summaryrefslogtreecommitdiffstats
path: root/vim/plugrc/unite.rc.vim
blob: 909c6dcf331b4c6889dd0c08f87c46b0995d544c (plain)
1
2
3
4
5
6
7
call unite#filters#matcher_default#use(['matcher_fuzzy'])
autocmd FileType unite call s:unite_my_settings()
function! s:unite_my_settings()
	nmap <buffer> <C-p> <Plug>(unite_toggle_auto_preview)
	imap <buffer> <C-j> <Plug>(unite_select_next_line)
	imap <buffer> <C-k> <Plug>(unite_select_previous_line)
endfunction