aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/vimls.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lsp/vimls.lua')
-rw-r--r--.config/nvim/lsp/vimls.lua29
1 files changed, 29 insertions, 0 deletions
diff --git a/.config/nvim/lsp/vimls.lua b/.config/nvim/lsp/vimls.lua
new file mode 100644
index 0000000..ba202c1
--- /dev/null
+++ b/.config/nvim/lsp/vimls.lua
@@ -0,0 +1,29 @@
+---@brief
+---
+--- https://github.com/iamcco/vim-language-server
+---
+--- You can install vim-language-server via npm:
+--- ```sh
+--- npm install -g vim-language-server
+--- ```
+
+---@type vim.lsp.Config
+return {
+ cmd = { 'vim-language-server', '--stdio' },
+ filetypes = { 'vim' },
+ root_markers = { '.git' },
+ init_options = {
+ isNeovim = true,
+ iskeyword = '@,48-57,_,192-255,-#',
+ vimruntime = '',
+ runtimepath = '',
+ diagnostic = { enable = true },
+ indexes = {
+ runtimepath = true,
+ gap = 100,
+ count = 3,
+ projectRootPatterns = { 'runtime', 'nvim', '.git', 'autoload', 'plugin' },
+ },
+ suggest = { fromVimruntime = true, fromRuntimepath = true },
+ },
+}