vim: use hard tabs

master
an 2019-07-07 15:50:28 -04:00
parent fd09841ac4
commit 1a926779f5
1 changed files with 5 additions and 2 deletions

View File

@ -62,10 +62,13 @@ set smartcase
set ignorecase
set incsearch
" tabulation (3 spaces, auto-indent when my muscle memory demands it)
" tabulation (3 space hard tabs, auto-indent when my muscle memory demands it)
set autoindent
set noexpandtab
set smarttab
set noexpandtab
set copyindent
set preserveindent
set softtabstop=0
set shiftwidth=3
set tabstop=3