mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-13 15:09:34 +00:00
9 lines
256 B
Lua
9 lines
256 B
Lua
local map = require('utils').map
|
|
local g = vim.g
|
|
|
|
-- nerdcommenter
|
|
map('', '<leader>cc', 'V}:call NERDComment("x", "toggle")<CR>')
|
|
map('', '<leader>cu', 'V{:call NERDComment("x", "toggle")<CR>')
|
|
g['NERDTrimTrailingWhitespace'] = 1
|
|
g['NERDSpaceDelims'] = 1
|