Skip to content

Commit

Permalink
Move tabstops to set.
Browse files Browse the repository at this point in the history
  • Loading branch information
panthomakos committed Nov 7, 2014
1 parent 095c7e6 commit c7e8cc4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .vimrc
Expand Up @@ -62,10 +62,10 @@ set winminheight=5
set winheight=999

" Default <Tab> Configuration
setglobal tabstop=2 " Display <Tab> as two spaces in visual mode.
setglobal softtabstop=2 " Insert <Tab> as two spaces when editing.
setglobal shiftwidth=2 " Insert <Tab> as two spaces when auto-indenting.
setglobal expandtab " In insert mode, use the appropriate number of spaes for <Tab>.
set tabstop=2 " Display <Tab> as two spaces in visual mode.
set softtabstop=2 " Insert <Tab> as two spaces when editing.
set shiftwidth=2 " Insert <Tab> as two spaces when auto-indenting.
set expandtab " In insert mode, use the appropriate number of spaes for <Tab>.

set hlsearch " Highlight searches.
set number " Number lines.
Expand Down

0 comments on commit c7e8cc4

Please sign in to comment.