This commit is contained in:
Nickolaj Jepsen 2024-08-28 16:08:36 +00:00
parent c69ed34507
commit d68c699a7a
18 changed files with 644 additions and 203 deletions

View file

@ -11,7 +11,7 @@
programs.nixvim = {
enable = true;
options = {
opts = {
number = true;
relativenumber = false;
tabstop = 4;
@ -75,20 +75,15 @@
lsp = {
enable = true;
servers.nil_ls.enable = true;
servers.nil-ls.enable = true;
};
lspkind = {
enable = true;
};
nvim-cmp = {
cmp = {
enable = true;
sources = [{ name = "nvim_lsp"; }];
mappingPresets = [ "insert" ];
mapping = {
"<CR>" = "cmp.mapping.confirm({ select = true })";
};
};
};
};