2022-07-17 04:25:55 +02:00
|
|
|
# vim:set ft=zsh ai et sw=4 ts=4:
|
|
|
|
#
|
2022-07-19 15:04:00 +02:00
|
|
|
# ~/.zshrc.d/fzf.zsh
|
2022-07-17 04:25:55 +02:00
|
|
|
|
|
|
|
## default opts uses Catppuccin (mocha) color palette
|
|
|
|
export FZF_DEFAULT_OPTS='--color=bg+:#302D41,bg:#1E1E2E,spinner:#F8BD96,hl:#F28FAD --color=fg:#D9E0EE,header:#F28FAD,info:#DDB6F2,pointer:#F8BD96 --color=marker:#F8BD96,fg+:#F2CDCD,prompt:#DDB6F2,hl+:#F28FAD'
|
|
|
|
|
|
|
|
## completion trigger
|
|
|
|
export FZF_COMPLETION_TRIGGER="~~"
|
|
|
|
|
|
|
|
## default source for fzf
|
|
|
|
export FZF_DEFAULT_COMMAND="fd --type f --hidden --follow --exclude .git"
|
|
|
|
|
|
|
|
## keybinding for fzf-marks
|
|
|
|
bindkey '\eg' fzm
|