summaryrefslogtreecommitdiff
path: root/init.vim
diff options
context:
space:
mode:
authorself <george@gabbott.dev>2022-10-19 16:24:02 +0100
committerself <george@gabbott.dev>2022-10-19 16:24:02 +0100
commit07a2af508cb525fcfdb60742891f1b47a56f5fdd (patch)
tree56ce81bc2fd773a7e834586d75a8dbd7cd93c870 /init.vim
parent1500875416689d6255035182259a95d172bde4de (diff)
Indecisive, but a return to 8-wide tabs...
Diffstat (limited to 'init.vim')
-rwxr-xr-xinit.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.vim b/init.vim
index 0989928..bc2a168 100755
--- a/init.vim
+++ b/init.vim
@@ -4,11 +4,11 @@ set ignorecase " case insensitive
set mouse=v " middle-click paste with
set hlsearch " highlight search
set incsearch " incremental search
-set tabstop=4 " number of columns occupied by a tab
+" set tabstop=4 " number of columns occupied by a tab
" set softtabstop=4 " see multiple spaces as tabstops so <BS> does the right thing
" set expandtab " converts tabs to white space
-set shiftwidth=4 " width for autoindents
-set autoindent " indent a new line the same amount as the line just typed and this is cool
+" set shiftwidth=4 " width for autoindents
+set autoindent " indent a new line the same amount as the line just typed
set number " add line numbers
set wildmode=full,longest,list " get bash-like tab completions
set cc=80 " set an 80 column border for good coding style