From caf946341d1cb0cab30f9b6487512c300c81dd80 Mon Sep 17 00:00:00 2001 From: Siggy Gudbrandsson Date: Sun, 8 Dec 2024 14:00:14 +0000 Subject: [PATCH] Added comment plugin --- lua/custom/plugins/init.lua | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) 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 - +--