.vimrc: merge with .vimrc from vriska (work)

This commit is contained in:
Lexi Stelter 2020-01-29 11:23:33 +01:00
parent 9608618a3c
commit 9bb521f562
1 changed files with 2 additions and 1 deletions

3
.vimrc
View File

@ -19,11 +19,12 @@ set smartcase
" Indentation options (yeah let's switch to spaces instead of tabs I guess...) " Indentation options (yeah let's switch to spaces instead of tabs I guess...)
set autoindent set autoindent
set expandtab set expandtab
set smarttab
set shiftwidth=4 set shiftwidth=4
set tabstop=4 set tabstop=4
set softtabstop=4 set softtabstop=4
" Autodetect stuff like 'use tabs in Makefiles' " Activate filetype plugin (e.g. for automatically using tabs instead of spaces in Makefiles)
filetype plugin on filetype plugin on
" Indentation for Python (use 4 spaces) " Indentation for Python (use 4 spaces)