16 lines
342 B
VimL
16 lines
342 B
VimL
""" FZF
|
|
|
|
let g:fzf_commits_log_options = '--graph --color=always --format="%C(auto)%h%d %s %C(black)%C(bold)%cr"'
|
|
|
|
let g:fzf_action = {
|
|
\ 'ctrl-t': 'tabedit',
|
|
\ 'ctrl-v': 'vsplit',
|
|
\ 'ctrl-x': 'split' }
|
|
let g:fzf_buffers_jump = 1
|
|
|
|
let g:fzf_commands_expect = 'alt-enter,ctrl-x'
|
|
|
|
" disable popup window
|
|
" let g:fzf_layout = { 'down': '40%' }
|
|
|