diff options
author | Chris <[email protected]> | 2020-05-10 19:23:44 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-05-10 19:23:44 -0400 |
commit | db80027544fdb56160b2e4bef16a98bdc1da76c8 (patch) | |
tree | e2a110a9b468c48f522ace148cdfefa8af161815 /general/functions.vim | |
parent | 5977c59876bd41de06461b81b6758dafe097faed (diff) |
updates
Diffstat (limited to 'general/functions.vim')
-rw-r--r-- | general/functions.vim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/general/functions.vim b/general/functions.vim index 31297c36..a708c61e 100644 --- a/general/functions.vim +++ b/general/functions.vim @@ -1,11 +1,11 @@ " Turn spellcheck on for markdown files -augroup auto_spellcheck - autocmd BufNewFile,BufRead *.md setlocal spell -augroup END +" augroup auto_spellcheck + " autocmd BufNewFile,BufRead *.md setlocal spell +" augroup END " Remove trailing whitespaces automatically before save -augroup strip_ws - autocmd BufWritePre * call utils#stripTrailingWhitespaces() -augroup END +" augroup strip_ws + " autocmd BufWritePre * call utils#stripTrailingWhitespaces() +" augroup END |