10 lines
200 B
Lua
10 lines
200 B
Lua
return {
|
|
'terrortylor/nvim-comment',
|
|
config = function()
|
|
require('nvim_comment').setup({
|
|
-- should comment out empty or whitespace only lines
|
|
comment_empty = false,
|
|
})
|
|
end
|
|
}
|