mirror of https://github.com/qpixel/dotfiles.git
Compare commits
2 Commits
3577ccd0fa
...
9afa26e490
| Author | SHA1 | Date |
|---|---|---|
|
|
9afa26e490 | |
|
|
5456b6c3b9 |
|
|
@ -51,6 +51,18 @@ alias cn="code-insiders ."
|
|||
# cd to z
|
||||
alias cd="z"
|
||||
|
||||
alias gs='git status '
|
||||
alias ga='git add '
|
||||
alias gb='git branch '
|
||||
alias gc='git commit'
|
||||
alias gd='git diff'
|
||||
alias gco='git checkout '
|
||||
alias gk='gitk --all&'
|
||||
alias gx='gitx --all'
|
||||
|
||||
alias got='git '
|
||||
alias get='git '
|
||||
|
||||
|
||||
# tabtab source for packages
|
||||
# uninstall by removing these lines
|
||||
|
|
@ -63,15 +75,20 @@ alias cd="z"
|
|||
export BUN_INSTALL="/Users/rileysmith/.bun"
|
||||
export PATH="$BUN_INSTALL/bin:$PATH"
|
||||
|
||||
# android
|
||||
# Path Stuff
|
||||
export ANDROID_HOME=$HOME/Library/Android/sdk
|
||||
export PATH=$PATH:$ANDROID_HOME/emulator
|
||||
export PATH=$PATH:$ANDROID_HOME/platform-tools
|
||||
export PATH=$PATH:$HOME/.new_local/bin
|
||||
export PATH=/opt/homebrew/opt/mysql-client/bin:$PATH
|
||||
export JAVA_HOME=`/usr/libexec/java_home -v 17.0.8`
|
||||
|
||||
# zoxide
|
||||
eval "$(zoxide init zsh)"
|
||||
|
||||
# rbenv
|
||||
eval "$(rbenv init - zsh)"
|
||||
|
||||
eval "$(starship init zsh)"
|
||||
|
||||
if [[ $TERM_PROGRAM != "WarpTerminal" ]]; then
|
||||
|
|
@ -79,11 +96,11 @@ if [[ $TERM_PROGRAM != "WarpTerminal" ]]; then
|
|||
fi
|
||||
|
||||
|
||||
(
|
||||
if ! ssh-add -l >/dev/null 2>&1; then
|
||||
ssh-add --apple-load-keychain >/dev/null 2>&1
|
||||
fi &
|
||||
)
|
||||
# (
|
||||
# if ! ssh-add -l >/dev/null 2>&1; then
|
||||
# ssh-add --apple-load-keychain >/dev/null 2>&1
|
||||
# fi &
|
||||
# )
|
||||
#znap function _sshadd ssh 'eval "$(ssh-add --apple-load-keychain)"'
|
||||
# compctl -K _sshadd ssh
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue