diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 6f050be5..cf53b36d 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -3,18 +3,29 @@ -- -- See the kickstart.nvim README for more information return { - { - "Exafunction/codeium.nvim", - dependencies = { - "nvim-lua/plenary.nvim", - "hrsh7th/nvim-cmp", - }, - config = function() - require("codeium").setup({ - }) - end - }, + { + "Exafunction/codeium.nvim", + dependencies = { + "nvim-lua/plenary.nvim", + "hrsh7th/nvim-cmp", + }, + config = function() + require("codeium").setup({ + }) + end + }, + -- add this to your lua/plugins.lua, lua/plugins/init.lua, or the file you keep your other plugins: + { + 'numToStr/Comment.nvim', + opts = { + -- add any options here + }, + config = function () + require('Comment').setup() + end + } + } -- vim: ts=2 sts=2 sw=2 et - +--