[nvim+zsh] disable the ugly fzf popup window and turn off rounded borders in the preview window

This commit is contained in:
Dmytro Meleshko 2020-11-04 02:09:45 +02:00
parent ee186f7285
commit f9ed443e4a
2 changed files with 4 additions and 0 deletions

View File

@ -145,6 +145,8 @@ endif
nnoremap <silent> <F1> <Cmd>Helptags<CR>
nnoremap <silent> <leader>f <Cmd>Files<CR>
nnoremap <silent> <leader>b <Cmd>Buffers<CR>
let g:fzf_layout = { 'down': '~40%' }
let $FZF_DEFAULT_OPTS = '--preview-window=sharp'
" }}}

View File

@ -29,3 +29,5 @@ jq_colors=(
# join all values from jq_colors with a colon
export JQ_COLORS="${(j.:.)jq_colors}"
unset jq_colors
export FZF_DEFAULT_OPTS='--preview-window=sharp'