From df2c13f41911994819938b2c49d78948c38ac5fd Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Fri, 5 Jan 2018 15:57:58 +0100 Subject: [PATCH] Help fzf search in the whole project, not only current dir --- .vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.vimrc b/.vimrc index 99d725e..39c59bc 100644 --- a/.vimrc +++ b/.vimrc @@ -72,6 +72,11 @@ let NERDTreeIgnore = ['\.pyc$'] autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif +" Rooter changes the working directory to the project root when you open a +" file or directory. Useful when using fzf for example. +Plugin 'airblade/vim-rooter' + + " Full path fuzzy file, buffer, mru, tag, ... finder " Quickly open files, fuzzy search on name "Plugin 'ctrlpvim/ctrlp.vim'