Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.11 KB

fzf.rst

File metadata and controls

39 lines (27 loc) · 1.11 KB

localcfg/plugins/fzf.vim

Use a popup window when supported:

if has('popupwin')
    const g:fzf_layout = #{window: #{height: 0.6, width: 0.6}}

… or a smaller than default regular window:

else
    const g:fzf_layout = #{down: '~30%'}
endif

Override default prompt colour:

const g:fzf_colors = #{prompt:  ['fg', 'Conditional']}

Keep history in |XDG basedir| compliant location:

const g:fzf_history_dir = g:vim_cache_dir .. '/fzf-history'

Jump through hoops to find a valid way to run :command:`fzf` if :terminal isn’t available:

if !has('terminal')
    if $TERMINAL ==# 'st' || $TERMINAL ==# 'urxvtc'
        const g:fzf_launcher = printf('%s -e %s -c %%s', $TERMINAL, $SHELL)
    elseif executable('st')
        const g:fzf_launcher = printf('st -e %s -c %%s', $SHELL)
    elseif executable('urxvtc')
        const g:fzf_launcher = printf('urxvtc -e %s -c %%s', $SHELL)
    else
        const g:fzf_launcher = printf('xterm -e %s -ic %%s', $SHELL)
    endif
endif