VIM: adds options for tabwidth

I intentionally use a proper tab character rather than spaces because I
prefer tabs to spaces.
This commit is contained in:
Jonathan Hodgson 2020-09-26 16:49:12 +01:00
parent 2ab9b7a9b4
commit 29fbe811a9

View file

@ -22,3 +22,9 @@ set hidden
" Makes vim try to keep 5 lines visible at the top and bottom
set scrolloff=5
" set tabwidth
set autoindent
set smartindent
set shiftwidth=4
set tabstop=4