Skip to content

Instantly share code, notes, and snippets.

@vxst
Created May 8, 2014 23:31
Show Gist options
  • Save vxst/b355b2cb0da75312d62d to your computer and use it in GitHub Desktop.
Save vxst/b355b2cb0da75312d62d to your computer and use it in GitHub Desktop.
set nu
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
set cryptmethod=blowfish
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
Bundle 'moll/vim-node'
Bundle 'jelera/vim-javascript-syntax'
Bundle 'myhere/vim-nodejs-complete'
Bundle 'scrooloose/nerdtree'
Bundle 'mbbill/undotree'
""Bundle 'Shougo/neocomplcache'
Bundle 'spf13/vim-autoclose'
Bundle 'tpope/vim-fugitive'
Bundle 'bling/vim-airline'
Bundle 'kchmck/vim-coffee-script'
map <C-T> :NERDTree<Return>
syntax enable
set background=dark
colorscheme elflord
filetype plugin indent on
" Configure For Undo Records
set undofile
set undodir=/home/st/.undodir/
let g:airline#extensions#tabline#enabled = 1
nnoremap <F10> :e ++enc=gb2312<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment