diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-14 23:09:14 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-14 23:09:14 +0100 |
commit | 420cb10fec664aac3377bbad1688a5a66fdb265d (patch) | |
tree | 32fc0a166e6a77ae0699a1cb987f504d1c50c724 | |
parent | Bug fixes (diff) | |
download | dotfiles-bsd-420cb10fec664aac3377bbad1688a5a66fdb265d.tar.gz dotfiles-bsd-420cb10fec664aac3377bbad1688a5a66fdb265d.tar.bz2 dotfiles-bsd-420cb10fec664aac3377bbad1688a5a66fdb265d.tar.xz dotfiles-bsd-420cb10fec664aac3377bbad1688a5a66fdb265d.tar.zst dotfiles-bsd-420cb10fec664aac3377bbad1688a5a66fdb265d.zip |
update
-rw-r--r-- | .config/zsh/.zshrc | 6 | ||||
-rw-r--r-- | .config/zsh/alias.zsh | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index a70c794..a23bc14 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -66,13 +66,13 @@ globalias() { zle _expand_alias zle expand-word fi - zle self-insert + # zle self-insert } zle -N globalias -bindkey -v " " globalias -bindkey -v "^ " magic-space +bindkey -v "^ " globalias +bindkey -v " " magic-space bindkey -M isearch " " magic-space PROMPT="%B%{$fg[red]%}%M %{$fg[blue]%}%c%{$fg[red]%}%%%{$reset_color%} " diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index fb85c42..b3374a6 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -113,3 +113,4 @@ alias svn='svn --config-dir $XDG_CONFIG_HOME/subversion' alias gpg2='gpg2 --homedir $XDG_DATA_HOME/gnupg' alias yarn='yarn --use-yarnrc $XDG_CONFIG_HOME/yarn/config' alias wget='wget --hsts-file="$XDG_CACHE_HOME/wget-hsts"' +alias rsync='rsync -v -h' |