Compare commits
No commits in common. "95ab5209b9a9467a9cb519690233e1a6f0d4e18f" and "d65c94d7ea0ec712e66df6d44224bbfa34969415" have entirely different histories.
95ab5209b9
...
d65c94d7ea
2
brewlist
2
brewlist
@ -30,5 +30,3 @@ stow
|
|||||||
tmux
|
tmux
|
||||||
yamllint
|
yamllint
|
||||||
zoxide
|
zoxide
|
||||||
zsh-autosuggestions
|
|
||||||
zsh-syntax-highlighting
|
|
||||||
|
1
casklist
1
casklist
@ -2,7 +2,6 @@
|
|||||||
alacritty
|
alacritty
|
||||||
docker
|
docker
|
||||||
font-fira-code-nerd-font
|
font-fira-code-nerd-font
|
||||||
font-fira-mono-nerd-font
|
|
||||||
insomnia
|
insomnia
|
||||||
netnewswire
|
netnewswire
|
||||||
raindropio
|
raindropio
|
||||||
|
14
zsh/.zshrc
14
zsh/.zshrc
@ -24,16 +24,15 @@ alias pandora="ssh root@pandora.cortex.io"
|
|||||||
alias miranda="ssh root@miranda.cortex.io"
|
alias miranda="ssh root@miranda.cortex.io"
|
||||||
|
|
||||||
# ---- convenience commands ----
|
# ---- convenience commands ----
|
||||||
alias editShell="vi ~/.zshrc"
|
alias editShell="nvim ~/.zshrc"
|
||||||
alias sourceShell="source ~/.zshrc"
|
alias sourceShell="source ~/.zshrc"
|
||||||
|
|
||||||
export NOMAD_ADDR=http://pandora.cortex.io:4646
|
export NOMAD_ADDR=http://pandora.cortex.io:4646
|
||||||
export PATH="/opt/homebrew/opt/libpq/bin:$PATH"
|
export PATH="/opt/homebrew/opt/libpq/bin:$PATH"
|
||||||
|
|
||||||
# ---- Oh-My-Posh ----
|
# ---- Oh-My-Posh ----
|
||||||
if [ "$TERM_PROGRAM" != "Apple_Terminal" ] && [ "$TERM_PROGRAM" != "zed" ];
|
if [ "$TERM_PROGRAM" != "Apple_Terminal" ]; then
|
||||||
then
|
eval "$(oh-my-posh init zsh --config ~/.config/oh-my-posh/theme.toml)"
|
||||||
eval "$(oh-my-posh init zsh --config ~/.config/oh-my-posh/theme.toml)"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# ---- Zoxide (better cd) ----
|
# ---- Zoxide (better cd) ----
|
||||||
@ -42,13 +41,8 @@ eval "$(zoxide init zsh)"
|
|||||||
# ---- Homebrew ----
|
# ---- Homebrew ----
|
||||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||||
|
|
||||||
# ---- ZSH Plugins ----
|
|
||||||
source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
|
||||||
source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
||||||
|
|
||||||
# ---- Auto Enter TMUX ----
|
# ---- Auto Enter TMUX ----
|
||||||
if [ -z "$TMUX" ] && [ "$TERM_PROGRAM" != "vscode" ] && [ "$TERM_PROGRAM" != "zed" ];
|
if [ -z "$TMUX" ]
|
||||||
then
|
then
|
||||||
tmux attach -t TMUX || tmux new -s TMUX
|
tmux attach -t TMUX || tmux new -s TMUX
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user