Last active
March 12, 2020 20:47
-
-
Save AngelOnFira/e65ceb8463901badc9a6c3d25502341b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| export ZSH="/home/forest/.oh-my-zsh" | |
| ZSH_THEME="ys" | |
| DISABLE_UPDATE_PROMPT="true" | |
| ENABLE_CORRECTION="true" | |
| COMPLETION_WAITING_DOTS="true" | |
| plugins=( | |
| git | |
| ) | |
| source $ZSH/oh-my-zsh.sh | |
| source $HOME/.cargo/env | |
| export PATH="/home/forest/.pyenv/bin:$PATH" | |
| eval "$(pyenv init -)" | |
| eval "$(pyenv virtualenv-init -)" | |
| alias dk='docker kill $(docker ps -q)' | |
| alias drm='docker rm $(docker ps -a -q)' | |
| gifsmall() {gifsicle -i $1.gif -O3 --colors 128 --resize-fit-width 500 -o $1-op.gif;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment