Created
June 1, 2019 06:29
-
-
Save Drewbi/a7ef6a9bfc46c640bc23f4832695bebc to your computer and use it in GitHub Desktop.
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
alias enter='enter.csh' | |
alias ccc='cc -std=c99 -Wall -Werror -pedantic' | |
alias python='python3' | |
alias clear='rm $HISTFILE; clear' | |
export PATH=/opt/apache-maven-3.6.0/bin:$PATH | |
export PATH=$HOME/bin:/usr/local/bin:$PATH | |
export JAVA_HOME=$(/usr/libexec/java_home) | |
export ZSH=$HOME/.oh-my-zsh | |
ZSH_THEME="bullet-train/bullet-train" | |
plugins=( | |
git | |
github | |
colored-man-pages | |
colorize | |
k | |
zsh-autosuggestions | |
virtualenv | |
) | |
PROMPT_EOL_MARK='' | |
COMPLETION_WAITING_DOTS="true" | |
HIST_STAMPS="mm/dd/yyyy" | |
source $ZSH/oh-my-zsh.sh | |
# Preferred editor for local and remote sessions | |
# if [[ -n $SSH_CONNECTION ]]; then | |
# export EDITOR='vim' | |
# else | |
# export EDITOR='mvim' | |
# fi | |
# ssh | |
# export SSH_KEY_PATH="~/.ssh/rsa_id" | |
# Set personal aliases, overriding those provided by oh-my-zsh libs, | |
# plugins, and themes. Aliases can be placed here, though oh-my-zsh | |
# users are encouraged to define aliases within the ZSH_CUSTOM folder. | |
# For a full list of active aliases, run `alias`. | |
# | |
# Example aliases | |
# alias zshconfig="mate ~/.zshrc" | |
# alias ohmyzsh="mate ~/.oh-my-zsh" | |
source /Users/dru/.oh-my-zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh | |
# Theme settings | |
BULLETTRAIN_PROMPT_CHAR="▲" | |
BULLETTRAIN_CONTEXT_DEFAULT_USER="dru" | |
# Time | |
BULLETTRAIN_TIME_12HR="true" | |
BULLETTRAIN_TIME_BG="black" | |
BULLETTRAIN_TIME_FG="yellow" | |
# DIR | |
BULLETTRAIN_DIR_EXTENDED="0" | |
BULLETTRAIN_DIR_BG="green" | |
BULLETTRAIN_DIR_FG="yellow" | |
# Git | |
BULLETTRAIN_GIT_BG="blue" | |
BULLETTRAIN_GIT_FG="magenta" | |
BULLETTRAIN_GIT_EXTENDED="false" | |
# CMD Time | |
BULLETTRAIN_EXEC_TIME_ELAPSED="1" | |
BULLETTRAIN_EXEC_TIME_BG="white" | |
BULLETTRAIN_EXEC_TIME_FG="magenta" | |
# Venv | |
BULLETTRAIN_VIRTUALENV_BG="cyan" | |
BULLETTRAIN_VIRTUALENV_FG="magenta" | |
BULLETTRAIN_VIRTUALENV_PREFIX="=>" | |
BULLETTRAIN_PROMPT_ORDER=( | |
time | |
dir | |
git | |
virtualenv | |
context | |
cmd_exec_time | |
) | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && . "$NVM_DIR/bash_completion" # This loads nvm bash_completion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment