diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-20 16:00:37 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-20 16:00:37 +0100 |
commit | 4cb9810569b3ed9ba9cabf7cf0440e07f8f3a320 (patch) | |
tree | c0a17487aefa7f8c2fc3f3a7ce7c0141c42b5f0f /.config | |
parent | Stream scripts update (diff) | |
download | dotfiles-bsd-4cb9810569b3ed9ba9cabf7cf0440e07f8f3a320.tar.gz dotfiles-bsd-4cb9810569b3ed9ba9cabf7cf0440e07f8f3a320.tar.bz2 dotfiles-bsd-4cb9810569b3ed9ba9cabf7cf0440e07f8f3a320.tar.xz dotfiles-bsd-4cb9810569b3ed9ba9cabf7cf0440e07f8f3a320.tar.zst dotfiles-bsd-4cb9810569b3ed9ba9cabf7cf0440e07f8f3a320.zip |
Added very usefull alias
Diffstat (limited to '.config')
-rw-r--r-- | .config/zsh/alias.zsh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index 35ca851..64b2a62 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -37,6 +37,7 @@ alias chown='chown -v' alias mount='mount -v' alias grep='grep --color' alias rgrep='grep -R -n -H' +alias rsync='rsync -v -h' alias fsl='fossil' alias diff='colordiff' alias yt='straw-viewer --api=auto' @@ -55,6 +56,7 @@ alias stopdocker='docker-machine stop docker-home' alias envdocker='eval `docker-machine env docker-home`' alias vimz='nvim $(fzf --preview="head -$FZF_PREVIEW_LINES {}")' alias v='nvim $(fzf --preview="head -$FZF_PREVIEW_LINES {}")' +alias tohex='printf "%x\n"' vbi() { p=$(pwd) cd "$HOME"/.local/bin || return @@ -135,4 +137,3 @@ 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' |