nvim: Use golden ratio mode

Floating window for fzf does not size up nicely when using golden-ratio
so disable that.

Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
Sanchayan Maity 2020-06-14 12:20:06 +05:30
parent 8ea80b9af7
commit c70ec871ec
2 changed files with 2 additions and 1 deletions

View file

@ -58,6 +58,8 @@ Plug 'christoomey/vim-system-copy'
Plug 'dhruvasagar/vim-markify'
" Toggle terminal
Plug 'caenrique/nvim-toggle-terminal'
" Resize window with golden ratio
Plug 'roman/golden-ratio'
" LSP
Plug 'neovim/nvim-lsp'
Plug 'haorenW1025/diagnostic-nvim'

View file

@ -30,7 +30,6 @@ let g:rainbow_active = 1
" FZF
let $FZF_DEFAULT_OPTS='--layout=reverse'
let g:fzf_layout = { 'window': { 'width': 0.8, 'height': 0.8 } }
" Incremental search
let g:incsearch#auto_nohlsearch = 1