35 lines
652 B
JSON
35 lines
652 B
JSON
{
|
|
"languageserver": {
|
|
"nix": {
|
|
"command": "nixd",
|
|
"filetypes": ["nix"]
|
|
},
|
|
"lua": {
|
|
"command": "lua-language-server",
|
|
"filetypes": ["lua"],
|
|
"settings": {
|
|
"Lua": {
|
|
"workspace": {
|
|
"library": {
|
|
"$VIMRUNTIME/lua": true,
|
|
"$VIMRUNTIME/lua/vim/lsp": true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"rust": {
|
|
"command": "rust-analyzer",
|
|
"filetypes": ["rust"]
|
|
},
|
|
"go": {
|
|
"command": "gopls",
|
|
"filetypes": ["go"]
|
|
},
|
|
"python": {
|
|
"command": "pyright",
|
|
"filetypes": ["python"]
|
|
}
|
|
}
|
|
}
|