Skip to content

Instantly share code, notes, and snippets.

@justnoise
Last active August 16, 2017 23:45
Show Gist options
  • Select an option

  • Save justnoise/02ff51870015707e9002a23819a6f097 to your computer and use it in GitHub Desktop.

Select an option

Save justnoise/02ff51870015707e9002a23819a6f097 to your computer and use it in GitHub Desktop.
Quick list of aliases
# -*- 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'
@justnoise
Copy link
Author

if [ -f $HOME/.commonrc ]; then
     source $HOME/.commonrc
fi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment