Last active
August 16, 2017 23:45
-
-
Save justnoise/02ff51870015707e9002a23819a6f097 to your computer and use it in GitHub Desktop.
Quick list of aliases
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
| # -*- mode: shell-script -*- | |
| export EDITOR='emacs' | |
| export PATH=$HOME/bin:$PATH | |
| export WORKON_HOME=$HOME/.virtualenvs | |
| source /usr/local/bin/virtualenvwrapper.sh | |
| alias ggs='git status' | |
| alias ggbl='git branch --list' | |
| alias ee='emacs -nw' | |
| alias eew='emacs' | |
| export LESS='-g -i -M -R -w -X -z-4' | |
| export PATH=$PATH:$HOME/bin | |
| if [ -f /etc/os-release ]; then | |
| alias myopen='xdg-open' | |
| fi | |
| alias cleanpython="find . -name '*.pyc' -print -delete" | |
| alias cleanemacs="find . -name '#*#' -print -delete; find . -name '.#*' -print -delete; find $HOME -name '#!*#' -maxdepth 1" | |
| alias openchrome="open -a /Applications/Google\ Chrome.app/" | |
| alias ipy='ipython' | |
| source /usr/local/bin/virtualenvwrapper.sh | |
| export LESS='-g -i -M -R -w -X -z-4' |
Author
justnoise
commented
Mar 29, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment