vim/after/ftplugin/markdown.vim

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