fix nixvim warnings
This commit is contained in:
parent
716f880b2f
commit
94d1f1574f
2 changed files with 8 additions and 5 deletions
|
@ -23,7 +23,6 @@
|
|||
option.get_bufnrs.__raw = "vim.api.nvim_list_bufs";
|
||||
keywordLength = 3;
|
||||
}
|
||||
{name = "copilot";}
|
||||
{
|
||||
name = "path"; # file system paths
|
||||
keywordLength = 3;
|
||||
|
|
|
@ -8,14 +8,18 @@
|
|||
enable = true;
|
||||
inlayHints = true;
|
||||
servers = {
|
||||
clangd = {enable = true;};
|
||||
clangd = {enable = true;};
|
||||
html = {enable = true;};
|
||||
lua-ls = {enable = true;};
|
||||
nixd = {enable = true;};
|
||||
lua_ls = {enable = true;};
|
||||
nixd = {enable = true;};
|
||||
pyright = {enable = true;};
|
||||
gopls = {enable = true;};
|
||||
jsonls = {enable = true;};
|
||||
rust-analyzer = {enable = true;};
|
||||
rust_analyzer = {
|
||||
enable = true;
|
||||
installCargo = true;
|
||||
installRustc = true;
|
||||
};
|
||||
yamlls = {enable = true;};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue