vim/after/ftplugin/markdown.vim
2016-03-12 20:35:11 +00:00

7 lines
175 B
VimL

if !has("win32") || has("gui_running")
setlocal spell
endif
setlocal textwidth=80
" Use tabwidth of 4 to be markdown complient
setlocal tabstop=4 shiftwidth=4 softtabstop=4