From 1a926779f5955abc5cff63727a4020272422f7ed Mon Sep 17 00:00:00 2001 From: Alison Watson Date: Sun, 7 Jul 2019 15:50:28 -0400 Subject: [PATCH] vim: use hard tabs --- vim/vimrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 200a77b..944d8dd 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -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