Skip to content

Instantly share code, notes, and snippets.

@mikeric
Created July 28, 2012 23:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeric/3195228 to your computer and use it in GitHub Desktop.
Save mikeric/3195228 to your computer and use it in GitHub Desktop.
VIM configuration
" 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