dotfiles/nvim/after/plugin/comments.lua
2023-12-22 06:26:40 +04:00

14 lines
335 B
Lua

require('Comment').setup({
toggler = {
-- if you're using other terminals use '<C-_>' but for some reason in kitty this didn't work, so i used '<C-/>'
line = '<C-/>',
block = '<C-\\>',
},
opleader = {
-- look at the comment above
line = '<C-/>',
block = '<C-\\>',
},
})