Skip to content

Instantly share code, notes, and snippets.

@bmnn
Last active December 29, 2015 18:49
Show Gist options
  • Save bmnn/7712889 to your computer and use it in GitHub Desktop.
Save bmnn/7712889 to your computer and use it in GitHub Desktop.
zsh; tmux; alias; environment variables;
# Start tmux
if [ "$TMUX" = "" ]; then tmux; fi
# Set theme
ZSH_THEME="gallifrey"
# Customize envionment variables
export PATH=$PATH:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/core_perl:/usr/local/texlive/2013/bin/i386-linux
export VISUAL='emacsclient --no-wait --alternate-editor vim'
# Define aliases
alias eC=$VISUAL
alias vW='git add \* && python getChangedFiles.py && python makeMain.py main'
alias gA='git grep -IiO --all-match -e'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment