1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00

Add a space after comment delimiter by default

This commit is contained in:
2020-01-04 10:28:32 +01:00
parent 4fa9bc0531
commit b848174960

2
.vimrc
View File

@@ -402,6 +402,8 @@ let g:vim_markdown_fenced_languages = ['c++=cpp', 'viml=vim', 'bash=sh', 'ini=do
" The NERD Commenter: A plugin that allows for easy commenting of code for " The NERD Commenter: A plugin that allows for easy commenting of code for
" many filetypes. " many filetypes.
Plug 'preservim/nerdcommenter' Plug 'preservim/nerdcommenter'
" Add spaces after comment delimiters by default
let g:NERDSpaceDelims = 1
" Align line-wise comment delimiters flush left instead of following code " Align line-wise comment delimiters flush left instead of following code
" indentation " indentation
let g:NERDDefaultAlign = 'left' let g:NERDDefaultAlign = 'left'