Stops zsh from trying to set the terminal color scheme over ssh
This commit is contained in:
parent
bacb273f81
commit
d5f3455733
1 changed files with 4 additions and 2 deletions
|
@ -87,8 +87,10 @@ source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
source ~/.dotfiles/shells/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
source ~/.dotfiles/shells/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||||
|
|
||||||
if [ -L $HOME/.dotfiles/shells/zsh/current-color-scheme ]; then
|
if [ ! -n "$SSH_CLIENT" ] && [ ! -n "$SSH_TTY" ]; then
|
||||||
source $HOME/.dotfiles/shells/zsh/current-color-scheme
|
if [ -L $HOME/.dotfiles/shells/zsh/current-color-scheme ]; then
|
||||||
|
source $HOME/.dotfiles/shells/zsh/current-color-scheme
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
TRAPWINCH(){
|
TRAPWINCH(){
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue