Add comment toggle plugin

This commit is contained in:
Kenneth Benzie 2024-03-03 19:47:26 +00:00
parent 02432384f4
commit 15486edb97

9
lua/plugins/comment.lua Normal file
View File

@ -0,0 +1,9 @@
return {
'terrortylor/nvim-comment',
config = function()
require('nvim_comment').setup({
-- should comment out empty or whitespace only lines
comment_empty = false,
})
end
}