tools/vim

Vim : using fzf in vim - fzf.vim

seul chan 2018. 5. 16. 19:00

Install fzf using homebrew

brew insatll fzf

Installing by vim-plug

github repository is here.

Plug '/usr/local/opt/fzf'
Plug 'junegunn/fzf.vim'

and do command :PlugInstall

Install the_silver_searcher

github repository is here

install by brew

brew install the_silver_searcher

Usage

In vim, do commands below

# find files
:Files

# find all (ag, need silver_searcher)
:Ag

# marks
:Marks

See more commands and configurations in github here