dylanaraps / fff.vim

A plugin for vim/neovim which allows you to use fff as a file opener.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 ~/dotfiles

Easy 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"

About

A plugin for vim/neovim which allows you to use fff as a file opener.

License:MIT License


Languages

Language:Vim Script 100.0%