[UPDATE][VIM] Use globally installed fzf package
This commit is contained in:
parent
b30bbc0a8f
commit
5c1b7ce9ac
1
Makefile
1
Makefile
|
@ -37,6 +37,7 @@ CLI_DEPENDENCIES := \
|
|||
aur/zsh-fast-syntax-highlighting-git \
|
||||
community/bat \
|
||||
community/fd \
|
||||
community/fzf \
|
||||
community/git-lfs \
|
||||
community/lesspipe \
|
||||
community/mosh \
|
||||
|
|
|
@ -61,4 +61,7 @@ source ~/.profile
|
|||
source ~/.bash_prompt
|
||||
|
||||
# Use fzf for backwards search
|
||||
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|
||||
source /usr/share/fzf/key-bindings.bash
|
||||
|
||||
# Enable fzf completion
|
||||
source /usr/share/fzf/completion.bash
|
||||
|
|
|
@ -94,8 +94,6 @@ Plug 'tpope/vim-git'
|
|||
Plug 'tpope/vim-fugitive'
|
||||
" Show git messages in preview window
|
||||
Plug 'rhysd/git-messenger.vim'
|
||||
" Fuzzy file finder (installs zfz system-wide)
|
||||
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
||||
" Pre-written functions for fzf mappings
|
||||
Plug 'junegunn/fzf.vim'
|
||||
" Rust syntax, folding, compiler etc...
|
||||
|
|
|
@ -112,4 +112,7 @@ source /usr/share/zsh/plugins/fast-syntax-highlighting/fast-syntax-highlighting.
|
|||
source ~/.zsh_prompt
|
||||
|
||||
# Use fzf for backwards search
|
||||
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
||||
source /usr/share/fzf/key-bindings.zsh
|
||||
|
||||
# Enable completions for fzf
|
||||
source /usr/share/fzf/completion.zsh
|
||||
|
|
Loading…
Reference in a new issue