Skip to content

Instantly share code, notes, and snippets.

@russ
Created September 25, 2008 20:12
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 russ/12926 to your computer and use it in GitHub Desktop.
Save russ/12926 to your computer and use it in GitHub Desktop.
syntax on
colorscheme elflord
filetype plugin indent on
set nocompatible
set nowrap
set showmatch
set tabstop=2
set incsearch
set backspace=2
set ignorecase
set comments=sl:/*,mb:*,elx:*/
set number
set ruler
set hlsearch
set directory=~/.vim/backup
" tab navigation
nmap <C-T><C-T> :tabnew <CR>
nmap <C-N><C-N> :tabnext <CR>
nmap <C-T><C-P> :tabprevious <CR>
nmap <C-T><C-C> :tabclose <CR>
" NERD_tree config
let NERDTreeChDirMode=2
let NERDTreeIgnore=['\.vim$', '\~$', '\.beam$', '\.swp$']
let NERDTreeSortOrder=['^__\.rb$', '\/$', '*', '\.swp$', '\.bak$', '\~$']
let NERDTreeShowBookmarks=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment