Skip to content

Instantly share code, notes, and snippets.

@zhuangya
Created July 7, 2014 17:38
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 zhuangya/27222db32c35a0ac6baf to your computer and use it in GitHub Desktop.
Save zhuangya/27222db32c35a0ac6baf to your computer and use it in GitHub Desktop.
"NeoBundle Scripts-----------------------------
if has('vim_starting')
set nocompatible " Be iMproved
" Required:
set runtimepath+=/Users/zy/.vim/bundle/neobundle.vim/
endif
" Required:
call neobundle#begin(expand('/Users/zy/.vim/bundle'))
" Let NeoBundle manage NeoBundle
" Required:
NeoBundleFetch 'Shougo/neobundle.vim'
" My Bundles here:
NeoBundle 'Shougo/vimshell.vim'
NeoBundle 'Shougo/vimproc.vim', {
\ 'build' : {
\ 'windows' : 'tools\\update-dll-mingw',
\ 'cygwin' : 'make -f make_cygwin.mak',
\ 'mac' : 'make -f make_mac.mak',
\ 'unix' : 'make -f make_unix.mak',
\ },
\ }
NeoBundle 'tpope/vim-fugitive'
NeoBundle 'tpope/vim-sensible'
NeoBundle 'tpope/vim-commentary'
NeoBundle 'glts/vim-cottidie'
autocmd VimEnter * nested CottidieTip
NeoBundle 'kien/ctrlp.vim'
NeoBundle 'flazz/vim-colorschemes'
NeoBundle 'xolox/vim-misc'
NeoBundle 'jiangmiao/auto-pairs'
NeoBundle 'roman/golden-ratio'
NeoBundle 'bronson/vim-trailing-whitespace'
NeoBundle 'pydave/asynccommand'
NeoBundle 'edkolev/promptline.vim'
" You can specify revision/branch/tag.
" Required:
call neobundle#end()
" Required:
filetype plugin indent on
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
NeoBundleCheck
"End NeoBundle Scripts-------------------------
colorscheme vydark
set hlsearch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment