moved nixvim to home-manager config, re-added firefox plugins
This commit is contained in:
15
modules/home/programs/nixvim/plugins/cmp.nix
Executable file
15
modules/home/programs/nixvim/plugins/cmp.nix
Executable file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
programs.nixvim = {
|
||||
plugins.cmp = {
|
||||
autoEnableSources = true;
|
||||
settings.sources = [
|
||||
{name = "nvim_lsp";}
|
||||
{name = "path";}
|
||||
{name = "buffer";}
|
||||
];
|
||||
};
|
||||
plugins.cmp-nvim-lsp.enable = true;
|
||||
plugins.cmp-nvim-lsp-document-symbol.enable = true;
|
||||
plugins.cmp-nvim-lsp-signature-help.enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user