This commit is contained in:
meml0rz
2024-11-12 23:14:59 +01:00
parent 7f18bd4b26
commit fbcfd52838
3 changed files with 9 additions and 3 deletions

View File

@ -45,7 +45,7 @@
bluetooth = {
enable = true;
};
opengl = {
graphics = {
enable = true;
};
rtl-sdr = {

View File

@ -7,13 +7,18 @@
cmp = {
enable = true;
autoEnableSources = true;
cmdline = {
completion = {
completeopt = [ "menu", "menuone", "noinsert", "noselect" ]
};
};
settings = {
mapping = {
"<C-Space>" = "cmp.mapping.complete()";
"<C-d>" = "cmp.mapping.scroll_docs(-4)";
"<C-e>" = "cmp.mapping.close()";
"<C-f>" = "cmp.mapping.scroll_docs(4)";
"<CR>" = "cmp.mapping.confirm({ select = true })";
"<CR>" = "cmp.mapping.confirm({ select = false })";
"<S-Tab>" = "cmp.mapping(cmp.mapping.select_prev_item(), {'i', 's'})";
"<Tab>" = "cmp.mapping(cmp.mapping.select_next_item(), {'i', 's'})";
};

View File

@ -7,7 +7,8 @@
./neotree.nix
./opts.nix
./lualine.nix
];
];
programs.nixvim = {
enable = true;
colorschemes.oxocarbon.enable = true;