make vim cmp stuff work
This commit is contained in:
parent
bdf61ca40f
commit
d9c2fb7a07
1 changed files with 10 additions and 3 deletions
13
home.nix
13
home.nix
|
@ -305,9 +305,16 @@
|
|||
};
|
||||
plugins = {
|
||||
comment.enable = true;
|
||||
cmp-cmdline.enable = true;
|
||||
cmp-fish.enable = true;
|
||||
cmp-nvim-lsp.enable = true;
|
||||
cmp = {
|
||||
enable = true;
|
||||
autoEnableSources = true;
|
||||
settings.sources = [
|
||||
{ name = "cmdline"; }
|
||||
{ name = "emoji"; }
|
||||
{ name = "fish"; }
|
||||
{ name = "nvim-lsp"; }
|
||||
];
|
||||
};
|
||||
lualine.enable = true;
|
||||
fidget.enable = true;
|
||||
fugitive.enable = true;
|
||||
|
|
Loading…
Reference in a new issue