diff options
author | Urbain Vaes <urbain@vaes.uk> | 2020-10-02 10:18:25 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2020-10-02 10:18:25 +0100 |
commit | f45ea107bed6d6c410b7ebfee691bdbaf51947e6 (patch) | |
tree | 5f9b11a4158c24795d68bcc649c29811d2519789 /zsh | |
parent | 93eab33d13f8f30c8ba0088f20721d14c981fd16 (diff) | |
parent | 96bfc178286b367b14e6287b3ae6dc57f3e6e2f6 (diff) |
Merge branch 'master' of localhost:public/dotfiles into master
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -43,6 +43,7 @@ setopt inc_append_history setopt no_share_history # Completion +autoload -Uz compinit && compinit zstyle ':completion:*' matcher-list 'm:{a-zA-Z-_}={A-Za-z_-}' 'r:|=*' 'l:|=* r:|=*' # Kill word @@ -65,8 +66,8 @@ fi source "$HOME/.zsh/zgen/zgen.zsh" FZF_MARKS_PLUGIN_ZSH=$HOME/dotfiles/plugins/fzf-marks/fzf-marks.plugin.zsh -FZF_MARKS_COMMAND='fzf --height 40% --reverse -e' [ -f "$FZF_MARKS_PLUGIN_ZSH" ] && source "$FZF_MARKS_PLUGIN_ZSH" +FZF_MARKS_COMMAND="$FZF_MARKS_COMMAND -e -n 1 -d ' : '" if ! zgen saved; then echo "Creating a zgen save" |