tabs over spaces

This commit is contained in:
Daniel Flanagan 2016-06-07 02:55:31 -05:00
parent 7fcd180fda
commit 1a2d855d3b

View file

@ -81,11 +81,11 @@ filetype plugin on
" C " C
let c_space_errors = 1 let c_space_errors = 1
let c_comment_strings = 0 " dont highlight strings inside C comments let c_comment_strings = 0 " dont highlight strings inside C comments
" Python " Python
let python_space_errors = 1 let python_space_errors = 1
autocmd FileType python setl tabstop=2 expandtab shiftwidth=2 softtabstop=2 autocmd FileType python setl tabstop=2 noexpandtab shiftwidth=2 softtabstop=2
" HAMLC " HAMLC
autocmd BufRead,BufNewFile *.hamlc set ft=haml autocmd BufRead,BufNewFile *.hamlc set ft=haml
@ -97,13 +97,13 @@ autocmd BufNewFile,BufReadPost *.md setl filetype=markdown spell textwidth=0 wra
autocmd BufNewFile,BufReadPost *.txt setl spell textwidth=0 wrapmargin=0 autocmd BufNewFile,BufReadPost *.txt setl spell textwidth=0 wrapmargin=0
" whitespace " whitespace
set tabstop=2 set tabstop=8
set shiftwidth=2 set shiftwidth=2
set softtabstop=2 set softtabstop=2
set expandtab set noexpandtab
set autoindent smartindent set autoindent smartindent
set listchars=tab:»·,trail" the end dot character here is literally present " set listchars=tab: ,trail: " the end dot character here is literally present
set list " set list
" look and feel " look and feel