diff --git a/modules/features/nvf.nix b/modules/features/nvf.nix index 231e07a..5657c5b 100644 --- a/modules/features/nvf.nix +++ b/modules/features/nvf.nix @@ -11,7 +11,11 @@ settings.vim = { statusline.lualine.enable = true; telescope.enable = true; - autocomplete.nvim-cmp.enable = true; + autocomplete.nvim-cmp = { + enable = true; + mappings.confirm = ""; + mappings.next = ""; + }; lsp.enable = true; git.vim-fugitive.enable = true; autopairs.nvim-autopairs.enable = true; @@ -46,6 +50,11 @@ after = "vim.cmd(\"colorscheme kanagawa\")"; }; + "wiki.vim" = { + package = pkgs.vimPlugins.wiki-vim; + + before = "vim.g['wiki_root'] = '~/Documents/Scripts/Wiki/personal'"; + }; }; opts = {