diff options
-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 |