vimrc/ftplugin/markdown.vim
2018-10-12 17:11:41 -04:00

9 lines
174 B
VimL

" set a smaller indent
setlocal ts=2
" and set up the buffer just like a text file
let oldwd = getcwd()
exec "cd ~/.config/nvim/ftplugin"
source text.vim
exec "cd " . oldwd