Created
April 6, 2011 09:11
-
-
Save keeguon/905372 to your computer and use it in GitHub Desktop.
My vimrc file
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
" Theme | |
set background=dark | |
let g:solarized_termcolors=16 | |
colorscheme solarized | |
" General settings | |
syntax on | |
set nocompatible | |
set number | |
" Indenting properties | |
set autoindent | |
set smartindent | |
set expandtab | |
set tabstop=2 | |
set shiftwidth=2 | |
" Plugins | |
autocmd VimEnter * NERDTree | |
autocmd BufEnter * NERDTreeMirror |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment