Last active
March 3, 2016 03:20
-
-
Save poad/19216f129a18a9d65070 to your computer and use it in GitHub Desktop.
VimへのNeoBundleのインストール ref: http://qiita.com/poad1010/items/0434466cec41193b1136
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mkdir -p ~/.vim/bundle | |
| git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set nocompatible " be iMproved | |
| filetype off | |
| if has('vim_starting') | |
| set runtimepath+=~/.vim/bundle/neobundle.vim | |
| call neobundle#rc(expand('~/.vim/bundle/')) | |
| endif | |
| " originalrepos on github | |
| NeoBundle 'Shougo/neobundle.vim' | |
| NeoBundle 'Shougo/vimproc', { | |
| \ 'build' : { | |
| \ 'windows' : 'make -f make_mingw32.mak', | |
| \ 'cygwin' : 'make -f make_cygwin.mak', | |
| \ 'mac' : 'make -f make_mac.mak', | |
| \ 'unix' : 'make -f make_unix.mak', | |
| \ }, | |
| \ } | |
| NeoBundle 'VimClojure' | |
| NeoBundle 'Shougo/vimshell' | |
| NeoBundle 'Shougo/unite.vim' | |
| NeoBundle 'Shougo/neocomplcache' | |
| NeoBundle 'Shougo/neosnippet' | |
| NeoBundle 'jpalardy/vim-slime' | |
| NeoBundle 'scrooloose/syntastic' | |
| NeoBundle 'Shougo/vimfiler.vim' | |
| NeoBundle 'itchyny/lightline.vim' | |
| NeoBundle 't9md/vim-textmanip' | |
| NeoBundle 'Shougo/unite.vim' | |
| NeoBundle 'ujihisa/unite-colorscheme' | |
| NeoBundle 'tomasr/molokai' | |
| ""NeoBundle 'https://bitbucket.org/kovisoft/slimv' | |
| filetype plugin indent on " required! | |
| filetype indent on | |
| syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment