-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor config to remove unused parts
- Loading branch information
1 parent
67fce12
commit 4f08891
Showing
3 changed files
with
18 additions
and
33 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,9 @@ | ||
# Path to your oh-my-zsh installation. | ||
export ZSH=/Users/rjossey/.oh-my-zsh | ||
PROMPT=" %F{033}❯%f " | ||
RPROMPT="%~" | ||
|
||
ZSH_THEME="powerlevel9k/powerlevel9k" | ||
# soure aliases | ||
source ~/zsh/aliases.sh | ||
|
||
plugins=(git vi-mode) | ||
|
||
source $ZSH/oh-my-zsh.sh | ||
|
||
# souce my famous aliases | ||
source $ZSH/aliases.sh | ||
source $ZSH/themes.sh | ||
|
||
# You may need to manually set your language environment | ||
export LANG=en_US.UTF-8 | ||
|
||
# Preferred editor for local and remote sessions | ||
export EDITOR='vim' | ||
|
||
export JAVA_HOME=$(/usr/libexec/java_home) | ||
|
||
export NVM_DIR="/Users/rjossey/.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 | ||
eval "$(rbenv init -)" | ||
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" | ||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nv |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
alias g='git' | ||
alias gs='git status' | ||
alias gst='git stash' | ||
alias gap='git add -p' | ||
alias gup='git pull' | ||
alias gco='git checkout' | ||
alias gp='git push' | ||
alias gd='git diff' |