2016-03-16 12:23:43 +01:00
|
|
|
# Path to your oh-my-zsh installation.
|
|
|
|
export ZSH=$HOME/.oh-my-zsh
|
|
|
|
|
|
|
|
# Set name of the theme to load.
|
2016-03-28 10:14:55 +02:00
|
|
|
ZSH_THEME="agnoster"
|
2016-09-06 22:24:54 +02:00
|
|
|
#DEFAULT_USER="user"
|
2016-03-16 12:23:43 +01:00
|
|
|
|
|
|
|
#turn on comments with # in shell
|
|
|
|
setopt interactivecomments
|
|
|
|
|
|
|
|
#aliases
|
|
|
|
alias zshconfig="vi ~/.zshrc_node"
|
|
|
|
alias zshconfig_global="vi ~/.zshrc"
|
|
|
|
alias vimconfig="vi ~/.vimrc"
|
|
|
|
alias sshconfig="vi ~/.ssh/config"
|
|
|
|
alias lh="du -hsc * | sort -hr"
|
2016-09-17 17:59:44 +02:00
|
|
|
alias lha="du -hsc .* | sort -hr"
|
2016-03-16 12:23:43 +01:00
|
|
|
alias sprunge="curl -F 'sprunge=<-' http://sprunge.us"
|
2016-03-28 10:14:55 +02:00
|
|
|
alias ix="curl -s -F 'f:1=<-' ix.io"
|
2016-03-16 12:23:43 +01:00
|
|
|
alias upics="curl -F c=@- https://ptpb.pw <"
|
|
|
|
alias vi="vim"
|
|
|
|
alias sudo="sudo "
|
2016-09-18 22:13:41 +02:00
|
|
|
alias installed="pacman -Qqen"
|
|
|
|
alias tmux="tmux -2"
|
2016-03-16 12:23:43 +01:00
|
|
|
|
|
|
|
#exports
|
|
|
|
export EDITOR='vim'
|
2016-09-18 22:13:41 +02:00
|
|
|
export POWERLINE_CONFIG_COMMAND=/usr/bin/powerline-config
|
2016-03-16 12:23:43 +01:00
|
|
|
#deactivate gaskpass
|
|
|
|
unset SSH_ASKPASS
|
|
|
|
#man colors
|
|
|
|
export LESS_TERMCAP_mb=$'\E[01;31m'
|
|
|
|
export LESS_TERMCAP_md=$'\E[01;31m'
|
|
|
|
export LESS_TERMCAP_me=$'\E[0m'
|
|
|
|
export LESS_TERMCAP_se=$'\E[0m'
|
|
|
|
export LESS_TERMCAP_so=$'\E[01;44;33m'
|
|
|
|
export LESS_TERMCAP_ue=$'\E[0m'
|
|
|
|
export LESS_TERMCAP_us=$'\E[01;32m'
|
2016-09-06 22:24:54 +02:00
|
|
|
#ssh-agent
|
|
|
|
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
|
|
|
|
|
|
|
|
#zshrc node specific
|
|
|
|
source ~/.zshrc_node
|
2016-03-16 12:23:43 +01:00
|
|
|
|
|
|
|
#zshconf
|
|
|
|
plugins=(git python)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
2016-09-06 22:24:54 +02:00
|
|
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|