Add vscode and zed terminal exceptions, Support vscode font limitations
This commit is contained in:
parent
de0a74edee
commit
95ab5209b9
1
casklist
1
casklist
@ -2,6 +2,7 @@
|
||||
alacritty
|
||||
docker
|
||||
font-fira-code-nerd-font
|
||||
font-fira-mono-nerd-font
|
||||
insomnia
|
||||
netnewswire
|
||||
raindropio
|
||||
|
@ -31,7 +31,8 @@ export NOMAD_ADDR=http://pandora.cortex.io:4646
|
||||
export PATH="/opt/homebrew/opt/libpq/bin:$PATH"
|
||||
|
||||
# ---- Oh-My-Posh ----
|
||||
if [ "$TERM_PROGRAM" != "Apple_Terminal" ]; then
|
||||
if [ "$TERM_PROGRAM" != "Apple_Terminal" ] && [ "$TERM_PROGRAM" != "zed" ];
|
||||
then
|
||||
eval "$(oh-my-posh init zsh --config ~/.config/oh-my-posh/theme.toml)"
|
||||
fi
|
||||
|
||||
@ -46,7 +47,8 @@ source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||
source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||
|
||||
# ---- Auto Enter TMUX ----
|
||||
if [ -z "$TMUX" ]
|
||||
if [ -z "$TMUX" ] && [ "$TERM_PROGRAM" != "vscode" ] && [ "$TERM_PROGRAM" != "zed" ];
|
||||
then
|
||||
tmux attach -t TMUX || tmux new -s TMUX
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user