aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/lwc_ls.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-04-18 17:44:38 +0200
committerJustin M. Keyes <justinkz@gmail.com>2025-04-18 17:44:38 +0200
commitf8b5cbe6312b568def1f91d747e2cdb8984fdf2e (patch)
treec1baf319b22d8ccc7d3468276b5ba9a26dfa2775 /lsp/lwc_ls.lua
parentfeat: angularls #3746 (diff)
downloadnvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar
nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar.gz
nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar.bz2
nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar.lz
nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar.xz
nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar.zst
nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.zip
docs: cleanup
- brief should live at the top of each file - fix indentation for some docs
Diffstat (limited to 'lsp/lwc_ls.lua')
-rw-r--r--lsp/lwc_ls.lua32
1 files changed, 16 insertions, 16 deletions
diff --git a/lsp/lwc_ls.lua b/lsp/lwc_ls.lua
index 7a11d787..b2f6a065 100644
--- a/lsp/lwc_ls.lua
+++ b/lsp/lwc_ls.lua
@@ -1,21 +1,21 @@
---@brief
---
--- https://github.com/forcedotcom/lightning-language-server/
---
--- Language server for Lightning Web Components.
---
--- For manual installation, utilize the official [NPM package](https://www.npmjs.com/package/@salesforce/lwc-language-server).
--- Then, configure `cmd` to run the Node script at the unpacked location:
---
--- ```lua
--- vim.lsp.config('lwc_ls', {
--- cmd = {
--- 'node',
--- '/path/to/node_modules/@salesforce/lwc-language-server/bin/lwc-language-server.js',
--- '--stdio'
--- }
--- })
--- ```
+--- https://github.com/forcedotcom/lightning-language-server/
+---
+--- Language server for Lightning Web Components.
+---
+--- For manual installation, utilize the official [NPM package](https://www.npmjs.com/package/@salesforce/lwc-language-server).
+--- Then, configure `cmd` to run the Node script at the unpacked location:
+---
+--- ```lua
+--- vim.lsp.config('lwc_ls', {
+--- cmd = {
+--- 'node',
+--- '/path/to/node_modules/@salesforce/lwc-language-server/bin/lwc-language-server.js',
+--- '--stdio'
+--- }
+--- })
+--- ```
return {
cmd = { 'lwc-language-server', '--stdio' },
filetypes = { 'javascript', 'html' },