moved to unstable, will need to fix nixvim

This commit is contained in:
Christoph Hollizeck 2024-03-28 17:04:52 +01:00
parent 6c8fc0837e
commit e40ebc5d2b
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
5 changed files with 137 additions and 138 deletions

View file

@ -128,36 +128,10 @@ in {
};
};
nvim-cmp = {
cmp = {
enable = true;
autoEnableSources = true;
sources = [
{
name = "nvim_lsp";
}
{
name = "luasnip";
}
{
name = "path";
}
{
name = "buffer";
}
];
mapping = {
"<C-Space>" = "cmp.mapping.complete()";
"<C-e>" = "cmp.mapping.close()";
"<Tab>" = {
modes = ["i" "s"];
action = "cmp.mapping.select_next_item()";
};
"<S-Tab>" = {
modes = ["i" "s"];
action = "cmp.mapping.select_prev_item()";
};
"<CR>" = "cmp.mapping.confirm({ select = true })";
};
settings = {
};
};
rainbow-delimiters = {