diff options
author | Chris <[email protected]> | 2020-05-17 15:41:22 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-05-17 15:41:22 -0400 |
commit | 6b8b6db11d454a87a33469c6949fddb2ccb6ef35 (patch) | |
tree | 4e78eb7d21b32509c8e602d35e36ecdd0ca48e89 | |
parent | 6f280c5198386265b37aa1d7cd7e86f3f7550a85 (diff) | |
parent | 275a53ec2cb1f42435046f70ff91032c79e6396c (diff) |
Merge branch 'master' of github.com:ChristianChiarulli/nvim
-rw-r--r-- | plug-config/fzf.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plug-config/fzf.vim b/plug-config/fzf.vim index 2e40f6e4..fbb5457f 100644 --- a/plug-config/fzf.vim +++ b/plug-config/fzf.vim @@ -22,7 +22,7 @@ let g:fzf_tags_command = 'ctags -R' " Border color let g:fzf_layout = {'up':'~90%', 'window': { 'width': 0.8, 'height': 0.8,'yoffset':0.5,'xoffset': 0.5, 'highlight': 'Todo', 'border': 'sharp' } } -let $FZF_DEFAULT_OPTS = '--layout=reverse --info=inline' +let $FZF_DEFAULT_OPTS = '--layout=reverse --inline-info' let $FZF_DEFAULT_COMMAND="rg --files --hidden --glob '!.git/**'" "-g '!{node_modules,.git}' @@ -44,7 +44,7 @@ let g:fzf_colors = "Get Files command! -bang -nargs=? -complete=dir Files - \ call fzf#vim#files(<q-args>, fzf#vim#with_preview({'options': ['--layout=reverse', '--info=inline']}), <bang>0) + \ call fzf#vim#files(<q-args>, fzf#vim#with_preview({'options': ['--layout=reverse', '--inline-info']}), <bang>0) " Get text in files with Rg |