Breaking vimrc apart into individual settings files in vim/plugin/settings

This commit is contained in:
yan
2011-12-12 18:21:42 -08:00
committed by Yan Pritzker
parent f077ff6d69
commit 492408b767
20 changed files with 290 additions and 304 deletions

View File

@@ -0,0 +1,11 @@
" Run the current file in a ConqueTerm, great for ruby tests
let g:ConqueTerm_InsertOnEnter = 0
let g:ConqueTerm_CWInsert = 1
let g:ConqueTerm_Color = 2
" Open up a variety of commands in the ConqueTerm
nmap <silent> <Leader>cc :execute 'ConqueTermSplit script/console --irb=pry'<CR>
nmap <silent> <Leader>pp :execute 'ConqueTermSplit pry'<CR>
nmap <silent> <Leader>bb :execute 'ConqueTermSplit /bin/bash --login'<CR>
let g:ConqueTerm_SendVisKey = '<Leader>e'