Created
July 28, 2012 23:26
-
-
Save mikeric/3195228 to your computer and use it in GitHub Desktop.
VIM configuration
This file contains 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
" GENERAL | |
:set ruler | |
:set number | |
:set noswapfile | |
syntax on | |
colorscheme mr | |
" INDENTATION | |
:set expandtab | |
:set tabstop=2 | |
:set shiftwidth=2 | |
:set cindent | |
:set smartindent | |
:set autoindent | |
" NERDTREE | |
let g:NERDTreeShowLineNumbers = 1 | |
let g:NERDTreeWinSize = 60 | |
nmap <leader>/ :NERDTreeToggle<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment