Created
November 13, 2009 19:47
-
-
Save jamiew/234099 to your computer and use it in GitHub Desktop.
My VIM config (.vimrc)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set expandtab " Use spaces instead of tabs | |
set autoindent " Inherit indent from previous line | |
syntax on | |
set tabstop=2 " Display \t as 2 spaces | |
"set shiftwidth=2 " Number of spaces to use for each indent | |
"set softtabstop=2 " Treat 2 spaces as a tab for editing purposes | |
"set smartindent | |
"set smarttab " Insert blank space at beginning of line with tab | |
" make searches case-insensitive, unless they contain upper-case letters | |
set ignorecase | |
set smartcase |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment