I don't get what is wrong...

This commit is contained in:
Chris Kruining 2024-08-20 22:34:22 +02:00
parent 901e1012c2
commit 9f437debb3
2 changed files with 58 additions and 58 deletions

View file

@ -12,37 +12,37 @@ in
programs.nixvim = {
enable = true;
options = {
number = true;
shiftwidth = 2;
};
# options = {
# number = true;
#
# shiftwidth = 2;
# };
# colorschemes.gruvbox.enable = true;
plugins = {
lualine.enable = true;
lightline.enable = true;
lsp = {
enable = true;
servers = {
tsserver.enable = true;
lua-ls.enable = true;
rust-analyzer.enable = true;
};
};
nvim-cmp = {
enable = true;
autoEnableSources = true;
sources = [
{name = "nvim_lsp";}
{name = "path";}
{name = "buffer";}
];
};
};
# plugins = {
# lualine.enable = true;
# lightline.enable = true;
#
# lsp = {
# enable = true;
# servers = {
# tsserver.enable = true;
# lua-ls.enable = true;
# rust-analyzer.enable = true;
# };
# };
#
# nvim-cmp = {
# enable = true;
# autoEnableSources = true;
# sources = [
# {name = "nvim_lsp";}
# {name = "path";}
# {name = "buffer";}
# ];
# };
# };
};
};
}