Browse Source

Fixed tabs for markdown files.

master
Daniel Sissom 1 month ago
parent
commit
49af0b46de
Signed by: djsissom GPG Key ID: 2C30FFB796852389
1 changed files with 8 additions and 2 deletions
  1. + 8
    - 2
      vim/vimrc

+ 8
- 2
vim/vimrc

@ -96,6 +96,7 @@ set showbreak=\ \ \ ⇲ " Visual linebreak indicator
set updatetime=100 " Make some plugins snappier
set backspace=indent,eol,start " Fix OS X backspace behavior
set ruler " Fix OS X missing ruler
set noexpandtab
"set nowrap
@ -120,11 +121,16 @@ aug python
autocmd FileType python setlocal ts=4 sts=4 sw=4 noexpandtab
aug end
aug python
" to override ftype/python.vim
aug scss
" to override ftype/scss.vim
autocmd FileType scss setlocal ts=4 sts=4 sw=4 noexpandtab
aug end
aug markdown
" to override ftype/scss.vim
autocmd FileType markdown setlocal ts=4 sts=4 sw=4 noexpandtab
aug end
syntax spell toplevel

Loading…
Cancel
Save