| 123456789101112131415161718 | " Random Useful Functions" Turn spellcheck on for markdown filesaugroup auto_spellcheck  autocmd BufNewFile,BufRead *.md setlocal spellaugroup END" function! OpenLiveServer()"  echo 'live server is on'"  silent !live-server % &" endfunctioncommand Serve :call OpenLiveServer()nnoremap <silent>bs :call OpenLiveServer()<CR>" augroup strip_ws"   autocmd BufWritePre * call utils#stripTrailingWhitespaces()" augroup END
 |