summaryrefslogtreecommitdiff
path: root/init.vim
diff options
context:
space:
mode:
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