nvim-dots/no-coc-settings.json
2025-06-01 14:49:34 +05:00

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"]
}
}
}