Beemo Lin

Beemo Lin

Do something interesting.

Facebook Github

vim 設定檔

set nocompatible “ be iMproved filetype off “ required! set rtp+=~/.vim/bundle/vundle/ call vundle#rc()

” let Vundle manage Vundle Bundle ‘gmarik/vundle’

“my Bundle here: “ “ original repos on github Bundle ‘kien/ctrlp.vim’ Bundle ‘sukima/xmledit’ Bundle ‘sjl/gundo.vim’ Bundle ‘jiangmiao/auto-pairs’ Bundle ‘klen/python-mode’ Bundle ‘Valloric/ListToggle’ Bundle ‘SirVer/ultisnips’ Bundle ‘Valloric/YouCompleteMe’ Bundle ‘scrooloose/syntastic’ Bundle ‘t9md/vim-quickhl’ “ Bundle ‘Lokaltog/vim-powerline’ Bundle ‘scrooloose/nerdcommenter’ “……………………………. “ vim-scripts repos Bundle ‘YankRing.vim’ Bundle ‘vcscommand.vim’ Bundle ‘ShowPairs’ Bundle ‘SudoEdit.vim’ Bundle ‘EasyGrep’ Bundle ‘VOoM’ Bundle ‘VimIM’ “……………………………. Bundle ‘The-NERD-tree’ “……………………………. “ non github repos “ Bundle ‘git://git.wincent.com/command-t.git’ “……………………………….. filetype plugin indent on “……………………………….. “NERDTree 設定

“設定F5開啟NERDTree nnoremap :NERDTreeToggle "上一分頁 nnoremap :tabn "下一分頁 nnoremap :tabp