Compare commits

...

4 Commits

4 changed files with 19 additions and 9 deletions

View File

@@ -12,3 +12,7 @@
[includeif "gitdir:~/work/"]
path = ~/work/.gitconfig
[credential]
helper = osxkeychain
[init]
defaultBranch = main

View File

@@ -1,3 +0,0 @@
[user]
email = caleb@flip.app

View File

@@ -26,8 +26,9 @@ export PATH="/Users/caleb/.bun/bin:$PATH"
export SSH_AUTH_SOCK=~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock
# ---- SSH Shortcuts ----
alias pandora="ssh root@pandora.cortex.io"
alias miranda="ssh root@miranda.cortex.io"
alias radiata="ssh root@radiata.cortex.io"
alias pandora="ssh caleb@pandora.cortex.io"
alias miranda="ssh caleb@miranda.cortex.io"
# ---- convenience commands ----
alias editShell="vi ~/.zshrc"
@@ -37,7 +38,7 @@ export NOMAD_ADDR=http://pandora.cortex.io:4646
export PATH="/opt/homebrew/opt/libpq/bin:$PATH"
# ---- Oh-My-Posh ----
if [ "$TERM_PROGRAM" != "Apple_Terminal" ] && [ "$TERM_PROGRAM" != "zed" ];
if [ "$TERM_PROGRAM" != "Apple_Terminal" ] && [ "$TERM_PROGRAM" != "zed" ];
then
eval "$(oh-my-posh init zsh --config ~/.config/oh-my-posh/theme.toml)"
fi
@@ -55,8 +56,16 @@ source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zs
# opencode
export PATH=/Users/caleb/.opencode/bin:$PATH
# The following lines have been added by Docker Desktop to enable Docker CLI completions.
fpath=(/Users/caleb/.docker/completions $fpath)
# ZSH/Bash Completions
fpath=(/Users/caleb/.docker/completions $fpath) #Docker
autoload -Uz compinit
compinit
# End of Docker CLI completions
eval "$(op completion zsh)"; compdef _op op #1Password
autoload -U +X bashcompinit && bashcompinit
complete -o nospace -C /opt/homebrew/bin/consul consul
complete -o nospace -C /opt/homebrew/bin/nomad nomad
complete -o nospace -C /opt/homebrew/bin/nomad vault
export PATH="$HOME/.local/bin:$PATH"
export PATH="$PATH:/Users/caleb/.lmstudio/bin"