diff --git a/nvim/.config/nvim/after/plugin/comment.lua b/nvim/.config/nvim/after/plugin/comment.lua new file mode 100644 index 0000000..32df108 --- /dev/null +++ b/nvim/.config/nvim/after/plugin/comment.lua @@ -0,0 +1,2 @@ +require("Comment").setup() + diff --git a/nvim/.config/nvim/lazy-lock.json b/nvim/.config/nvim/lazy-lock.json index 586f82e..d2f95e3 100644 --- a/nvim/.config/nvim/lazy-lock.json +++ b/nvim/.config/nvim/lazy-lock.json @@ -1,4 +1,5 @@ { + "Comment.nvim": { "branch": "master", "commit": "0236521ea582747b58869cb72f70ccfa967d2e89" }, "LuaSnip": { "branch": "master", "commit": "de1a287c9cb525ae52bc846e8f6207e5ef1da5ac" }, "cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" }, "cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" }, @@ -20,6 +21,5 @@ "telescope-fzf-native.nvim": { "branch": "main", "commit": "9ef21b2e6bb6ebeaf349a0781745549bbb870d27" }, "telescope.nvim": { "branch": "master", "commit": "d829aa64059001ee7b2c8c8aa9c4e6df0b17d893" }, "undotree": { "branch": "master", "commit": "56c684a805fe948936cda0d1b19505b84ad7e065" }, - "vim-fugitive": { "branch": "master", "commit": "4f59455d2388e113bd510e85b310d15b9228ca0d" }, - "which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" } + "vim-fugitive": { "branch": "master", "commit": "4f59455d2388e113bd510e85b310d15b9228ca0d" } } \ No newline at end of file diff --git a/nvim/.config/nvim/lua/zak/plugins.lua b/nvim/.config/nvim/lua/zak/plugins.lua index c0659ab..4e4a27a 100644 --- a/nvim/.config/nvim/lua/zak/plugins.lua +++ b/nvim/.config/nvim/lua/zak/plugins.lua @@ -15,17 +15,13 @@ end vim.opt.rtp:prepend(lazypath) return require('lazy').setup({ - -- { - -- 'folke/which-key.nvim', - -- event = "VeryLazy", - -- init = function() - -- vim.o.timeout = true - -- vim.o.timeoutlen = 300 - -- end, - -- opts = { - - -- } - -- }, + { + 'numToStr/Comment.nvim', + opts = { + -- add any options here + }, + lazy = false, + }, { 'nvim-telescope/telescope.nvim', tag = '0.1.7',