diff --git a/modules/home-manager/neovim.nix b/modules/home-manager/neovim.nix index 1151ac4..c979d10 100644 --- a/modules/home-manager/neovim.nix +++ b/modules/home-manager/neovim.nix @@ -61,6 +61,18 @@ in { enable = true; }; + # Autocompletion + autocomplete.nvim-cmp = { + enable = true; + mapping = { + close = ""; + complete = null; + confirm = ""; + next = ""; + previous = ""; + }; + }; + # Setup lsp's and languages languages = { enableLSP = true;