9 lines
275 B
VimL
9 lines
275 B
VimL
|
" 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
|