nvim/lua/plugins/comments.lua
RingOfStorms (Joshua Bell) a3f8af7fea colors and tabs
2023-07-20 04:18:36 -05:00

17 lines
417 B
Lua

vim.g.NERDCreateDefaultMappings = 0
vim.g.NERDDefaultAlign = 'both'
vim.g.NERDSpaceDelims = 1
vim.cmd("filetype plugin on")
return {
"preservim/nerdcommenter",
keys = {
{ "<leader>/", ':call nerdcommenter#Comment(0, "toggle")<CR>', desc = "Toggle comments on selection" },
{
"<leader>/",
':call nerdcommenter#Comment(0, "toggle")<CR>',
desc = "Toggle comments on selection",
mode = "v",
},
},
}