1
mirror of https://github.com/jakejarvis/dotfiles.git synced 2025-09-15 23:15:30 -04:00

move stuff around to make just dotfiles work on linux

This commit is contained in:
2020-05-13 11:19:39 -04:00
parent bc2ee5ceec
commit 53ff9d8ecb
11 changed files with 131 additions and 412 deletions

View File

@@ -58,8 +58,6 @@ alias vs="code ./"
# `brew install hub`
alias git="hub"
alias g="hub"
alias github="hub browse"
alias gist="hub gist create --open"
alias gc="git commit -m" # + commit message
alias gca="git add . && git commit -m" # + commit message
@@ -79,9 +77,10 @@ alias gsub="git submodule update --recursive --remote"
alias gundo="git reset --soft HEAD~1"
alias greset="git reset"
alias gsync="hub sync"
alias ghnew="hub create --browse"
alias ghfork="hub fork --remote-name=origin"
alias ghpr="hub pull-request --push --edit --browse"
alias github="hub browse"
alias gist="hub gist create --open"
alias ghnew="gh repo create"
alias ghfork="gh repo fork"
alias ghci="hub ci-status --verbose"
alias dc="docker-compose"

View File

@@ -35,15 +35,14 @@ if command -v pyenv 1>/dev/null 2>&1; then
fi
# rbenv
eval "$(rbenv init -)"
if command -v rbenv 1>/dev/null 2>&1; then
eval "$(rbenv init -)"
fi
# ----- Third-party additions below: -----
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/jake/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/jake/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/jake/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/jake/google-cloud-sdk/completion.zsh.inc'; fi
# Google Cloud SDK
[ -f /usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc ] && source /usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc
# added by travis gem
[ -f /Users/jake/.travis/travis.sh ] && source /Users/jake/.travis/travis.sh