Created
January 31, 2014 14:38
-
-
Save hyuki0000/8733223 to your computer and use it in GitHub Desktop.
This file contains 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
" NeoBundle | |
" https://github.com/Shougo/neobundle.vim | |
" cf. http://qiita.com/puriketu99/items/1c32d3f24cc2919203eb | |
set nocompatible | |
filetype off | |
if has('vim_starting') | |
set runtimepath+=~/.vim/bundle/neobundle.vim | |
call neobundle#rc(expand('~/.vim/bundle/')) | |
endif | |
NeoBundle 'Shougo/neobundle.vim' | |
NeoBundle 'Shougo/vimproc' | |
NeoBundle 'VimClojure' | |
NeoBundle 'Shougo/vimshell' | |
NeoBundle 'Shougo/unite.vim' | |
NeoBundle 'Shougo/neocomplcache' | |
NeoBundle 'Shougo/neosnippet' | |
NeoBundle 'jpalardy/vim-slime' | |
NeoBundle 'scrooloose/syntastic' | |
filetype plugin indent on | |
filetype indent on | |
syntax on | |
" Unite | |
" https://github.com/Shougo/unite.vim | |
" cf. http://blog.ruedap.com/2011/01/10/vim-unite-plugin | |
nnoremap <silent> ,uu :<C-u>Unite buffer file_mru<CR> | |
nnoremap <silent> ,ub :<C-u>Unite buffer<CR> | |
nnoremap <silent> ,uf :<C-u>UniteWithBufferDir -buffer-name=files file<CR> | |
nnoremap <silent> ,ur :<C-u>Unite -buffer-name=register register<CR> | |
nnoremap <silent> ,um :<C-u>Unite file_mru<CR> | |
nnoremap <silent> ,ua :<C-u>UniteWithBufferDir -buffer-name=files buffer file_mru bookmark file<CR> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment