Last active
December 29, 2015 18:49
-
-
Save bmnn/7712889 to your computer and use it in GitHub Desktop.
zsh; tmux; alias; environment variables;
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
# 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