11 lines
256 B
Lua
11 lines
256 B
Lua
return {
|
|
-- TODO: v0.10.0 Added built-in |commenting| support.
|
|
'terrortylor/nvim-comment',
|
|
config = function()
|
|
require('nvim_comment').setup({
|
|
-- should comment out empty or whitespace only lines
|
|
comment_empty = false,
|
|
})
|
|
end
|
|
}
|