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