.vimrc: omg are we really doing this now (indent with spaces)
This commit is contained in:
parent
12c511e65d
commit
05078cde30
4
.vimrc
4
.vimrc
|
|
@ -16,10 +16,12 @@ set hlsearch
|
||||||
set ignorecase
|
set ignorecase
|
||||||
set smartcase
|
set smartcase
|
||||||
|
|
||||||
" Indentation options
|
" Indentation options (yeah let's switch to spaces instead of tabs I guess...)
|
||||||
set autoindent
|
set autoindent
|
||||||
|
set expandtab
|
||||||
set shiftwidth=4
|
set shiftwidth=4
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
|
set softtabstop=4
|
||||||
|
|
||||||
" Indentation for Python (use 4 spaces)
|
" Indentation for Python (use 4 spaces)
|
||||||
"autocmd FileType python setlocal expandtab shiftwidth=4 softtabstop=4
|
"autocmd FileType python setlocal expandtab shiftwidth=4 softtabstop=4
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue