Last active
December 11, 2015 12:18
-
-
Save tnajdek/4599973 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ZSH=/usr/share/oh-my-zsh/ | |
ZSH_CUSTOM=~/.oh-my-zsh/custom/ | |
ZSH_THEME="robbyrussell" | |
DISABLE_AUTO_UPDATE="true" | |
plugins=(git archlinux django sublime themes python pip node npm history-substring-search zsh-syntax-highlighting) | |
source $ZSH/oh-my-zsh.sh | |
eval "$(fasd --init auto)" | |
alias zshconfig="subl ~/.zshrc" | |
alias yaourt="yaourt --noconfirm" | |
alias less="less -R" | |
alias grep="grep --color=always" | |
alias dmesg="dmesg -L --reltime -H" | |
alias lag="sudo tc qdisc add dev lo root netem delay" | |
alias nolag="sudo tc qdisc delete dev lo root" | |
alias chromium="chromium --ignore-gpu-blacklist" | |
alias npb="npm install & bower install" | |
PATH=/home/doppler/personal/bin:$PATH | |
EDITOR=vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment