|
@@ -110,6 +110,10 @@ NeoBundle 'git://github.com/Shougo/vimfiler.git'
|
|
|
NeoBundle 'git://github.com/Shougo/vimshell.git'
|
|
|
NeoBundle 'git://github.com/Shougo/vinarise.git'
|
|
|
|
|
|
+NeoBundle 'Shougo/vimproc'
|
|
|
+NeoBundle 'thinca/vim-quickrun'
|
|
|
+NeoBundle 'tsukkee/lingr-vim'
|
|
|
+
|
|
|
filetype plugin on
|
|
|
filetype indent on
|
|
|
|
|
@@ -118,3 +122,16 @@ set number
|
|
|
|
|
|
set mouse=a
|
|
|
set ttymouse=xterm2
|
|
|
+
|
|
|
+" ,is: シェルを起動
|
|
|
+nnoremap <silent> ,is :VimShell<CR>
|
|
|
+" ,ipy: pythonを非同期で起動
|
|
|
+nnoremap <silent> ,ipy :VimShellInteractive python<CR>
|
|
|
+" ,irb: irbを非同期で起動
|
|
|
+nnoremap <silent> ,irb :VimShellInteractive irb<CR>
|
|
|
+" ,ss: 非同期で開いたインタプリタに現在の行を評価させる
|
|
|
+vmap <silent> ,ss :VimShellSendString<CR>
|
|
|
+" 選択中に,ss: 非同期で開いたインタプリタに選択行を評価させる
|
|
|
+nnoremap <silent> ,ss <S-v>:VimShellSendString<CR>
|
|
|
+
|
|
|
+let g:neocomplcache_enable_at_startup = 1
|