[ADD][VIM] Open fzf in a floating window

This commit is contained in:
Bruno BELANYI 2020-08-31 13:43:41 +02:00
parent 04e1035114
commit 3966696ce3

View file

@ -0,0 +1,8 @@
" Use a floating window when availble
if has('nvim-0.4.0') || has("patch-8.2.0191")
let g:fzf_layout = { 'window': {
\ 'width': 0.9,
\ 'height': 0.7,
\ 'highlight': 'Comment',
\ 'rounded': v:false } }
endif