diff options
author | Cody Hiar <cody@hiar.ca> | 2020-11-18 10:33:23 -0700 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2020-11-18 10:33:23 -0700 |
commit | 94ddb88b0f1718d067850b2d93388d3523a96713 (patch) | |
tree | bcc66ae8eb19a65cb89b5c1c1563d7d31a711c15 /plugin | |
parent | 651bc1149a0e40f7a18f4f71b28fef0dc8a14740 (diff) |
Set tabstop in markdown files
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/vim-options.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index 51839b2..b08b360 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -35,7 +35,7 @@ set statusline+=%2*\ %=\ %l/%L\ (%02p%%)\ " Rownumber/total (%) au FileType vim,ledger,yaml,html,htmldjango setlocal tabstop=2 au FileType sh,python setlocal tabstop=4 au FileType make setlocal tabstop=4 noexpandtab -au FileType markdown set tw=80 +au FileType markdown set tw=80 tabstop=2 " Setup colorscheme syntax enable |