Switched to Zgen Plugin manager

This commit is contained in:
Marty Oehme 2019-02-04 03:32:45 +01:00
parent aee04848cf
commit 9a1cc66bd5
8 changed files with 495 additions and 122 deletions

27
.zsh_aliases Normal file
View file

@ -0,0 +1,27 @@
if [[ "$(uname -s)" == "Linux" ]]; then
# we're on linux
alias l-d="ls -lFad"
alias l="ls -lAhF"
alias ll="ls -lFa | TERM=vt100 less"
alias ls='ls --color=auto'
fi
# enables git management through dotfiles command
alias dotfiles='/usr/bin/git --git-dir=/home/marty/.dotfiles/ --work-tree=/home/marty'
alias n='nnn'
alias m='micro'
alias zshconf='m ~/.zshrc'
alias historysummary="history | awk '{a[\$2]++} END{for(i in a){printf \"%5d\t%s\n\",a[i],i}}' | sort -rn | head"
alias myip="curl -s icanhazip.com"
alias reattach="screen -r"
alias zh="fc -l -d -D"
alias ..="cd .."
alias ...="cd ../.."
alias ~="cd $HOME"