1
0
Fork 0

nvim remove most TComment keymaps

This commit is contained in:
tastytea 2022-08-11 21:30:20 +02:00
parent 7a7a76d786
commit cba0c92d9c
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 3 additions and 1 deletions

View File

@ -5,7 +5,9 @@ require('my/ui')
packer.use { -- toggle comments
'https://github.com/tomtom/tcomment_vim',
config = function()
map({ 'n', 'v' }, '<Leader>c', ':TComment<cr>')
vim.g.tcomment_opleader1 = '<Leader>c'
vim.g.tcomment_mapleader1 = ''
vim.g.tcomment_mapleader2 = ''
end
}