zsh-sytnax-highlighting

This commit is contained in:
Fred Klassen 2023-02-21 12:23:45 -08:00
commit 389615df11
No known key found for this signature in database
GPG key ID: E9E2149793BDE17E
4 changed files with 18 additions and 8 deletions

View file

@ -121,6 +121,7 @@ plugins=(
web-search
zsh-autosuggestions
zsh-interactive-cd
zsh-syntax-highlighting
)
# Linux only optional plugins
@ -193,6 +194,14 @@ export MANPATH="/usr/local/man:/usr/local/ssl/share/man:$MANPATH"
# alias ohmyzsh="mate ~/.oh-my-zsh"
alias gnb='git nb' # new branch aka checkout -b
alias gdtl='git difftool --no-prompt'
if [ -x "$(command -v colorls)" ]; then
alias ls="colorls"
alias la="colorls -al"
fi
if [ -x "$(command -v colorls)" ]; then
alias ls="colorls"
alias la="colorls -al"
fi
# Other custom config
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh