mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
19 lines
504 B
Lua
19 lines
504 B
Lua
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 },
|
|
},
|
|
}
|