Add & configure NERDCommenter

This commit is contained in:
Yash Karandikar 2022-06-19 16:07:39 +05:30
parent bfa797c75e
commit fe89346212

9
.vimrc
View file

@ -26,8 +26,10 @@ Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'tpope/vim-fugitive'
Plug 'valloric/MatchTagAlways'
Plug 'preservim/nerdcommenter'
call plug#end()
colorscheme nord
" airline should detect the theme automatically but just in case
@ -64,3 +66,10 @@ let g:autoclose_vim_commentmode = 1
" smart search
set ignorecase
set smartcase
" nerdcommenter settings
filetype plugin on
let g:NERDCreateDefaultMappings = 0
let g:NERDSpaceDelims = 1
nnoremap <C-_> :call nerdcommenter#Comment('n', 'invert')<CR>
nnoremap <C-a> :call nerdcommenter#Comment('n', 'append')<CR>