Added comment plugin

This commit is contained in:
Siggy Gudbrandsson 2024-12-08 14:00:14 +00:00
parent 3e197c0af2
commit caf946341d
1 changed files with 23 additions and 12 deletions

View File

@ -3,18 +3,29 @@
-- --
-- See the kickstart.nvim README for more information -- See the kickstart.nvim README for more information
return { return {
{ {
"Exafunction/codeium.nvim", "Exafunction/codeium.nvim",
dependencies = { dependencies = {
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
"hrsh7th/nvim-cmp", "hrsh7th/nvim-cmp",
}, },
config = function() config = function()
require("codeium").setup({ require("codeium").setup({
}) })
end 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 -- vim: ts=2 sts=2 sw=2 et
--