Skip to content

Commit

Permalink
update indent settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Anders Johnson committed Feb 9, 2013
1 parent 21a7a78 commit 85f6e88
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions vimrc
Expand Up @@ -29,20 +29,25 @@ call pathogen#infect()
" line numbers
set number

" tabs
set autoindent
set tabstop=4
set softtabstop=4
set shiftwidth=4

" C-style indentation setup
set cinkeys=0{,0},0),:,0#,!^F,o,),e

" filetype detection
if has("autocmd")
filetype plugin indent on
endif

" tabs
"set autoindent
"set smartindent
set expandtab
set copyindent
set preserveindent
set tabstop=2
set softtabstop=2
set shiftwidth=2

" C-style indentation setup
"set cinkeys=0{,0},0),:,0#,!^F,o,),e


" use \t in regex search
:retab

Expand Down

0 comments on commit 85f6e88

Please sign in to comment.