diff options
author | self <george@gabbott.dev> | 2022-10-19 16:24:02 +0100 |
---|---|---|
committer | self <george@gabbott.dev> | 2022-10-19 16:24:02 +0100 |
commit | 07a2af508cb525fcfdb60742891f1b47a56f5fdd (patch) | |
tree | 56ce81bc2fd773a7e834586d75a8dbd7cd93c870 /init.vim | |
parent | 1500875416689d6255035182259a95d172bde4de (diff) |
Indecisive, but a return to 8-wide tabs...
Diffstat (limited to 'init.vim')
-rwxr-xr-x | init.vim | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |