Initial autocomplete setup

This commit is contained in:
Vili Sinervä 2024-12-20 01:20:48 +02:00
parent 577e43d6dc
commit 467be6b26e
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996

View file

@ -92,7 +92,6 @@ in
}
];
# TODO Autocomplete
# TODO Check desireable keybinds and commands for all plugins
plugins = {
gitsigns.enable = true;
@ -117,7 +116,14 @@ in
};
web-devicons.enable = true;
# cmp-vsnip.enable = true;
cmp = {
enable = true;
settings.sources = [
{ name = "nvim-lsp"; }
{ name = "vim-lsp-signature-help"; }
{ name = "vim-vsnip"; }
];
};
friendly-snippets.enable = true;
nvim-autopairs.enable = true;