aboutsummaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc12
1 files changed, 12 insertions, 0 deletions
diff --git a/vimrc b/vimrc
index 10e679c..ba53677 100644
--- a/vimrc
+++ b/vimrc
@@ -302,6 +302,9 @@
" * Remove Autocommands section as it's not used.
" * Disable auditory.vim
"
+" 2015.07.12:
+" * Add pick mappings
+"
" Pathogen
@@ -471,6 +474,15 @@ nnoremap <leader>abt :<c-u>Unite -start-insert -immediately buffer tabopen<cr>
let g:ctrlp_user_command = 'ag %s -l --nocolor --hidden -g ""'
+" pick
+nnoremap <leader>xd :call PickFile()<cr>
+nnoremap <leader>xs :call PickFileSplit()<cr>
+nnoremap <leader>xv :call PickFileVerticalSplit()<cr>
+nnoremap <leader>xt :call PickFileTab()<cr>
+nnoremap <leader>xb :call PickBuffer()<cr>
+nnoremap <leader>x] :call PickTag()<cr>
+
+
" PreserveNoEOL
let g:PreserveNoEOL = 1