A plugin for vim/neovim which allows you to use fff
as a file opener.
Using vim-plug:
Plug 'dylanaraps/fff.vim'
Then run :PlugUpdate
" Open in current directory.
:F
" Open in ~/dotfiles (or other path)
:F ~/dotfiles
" Open fff on press of 'f'
nnoremap f :F<CR>
Default: let g:fff#split = "10new"
" Vertical split (NERDtree style).
let g:fff#split = "30vnew"
Default: let g:fff#split_direction = "splitbelow splitright"
" Open split on the left side (NERDtree style).
let g:fff#split_direction = "nosplitbelow nosplitright"