10 lines
436 B
Bash
10 lines
436 B
Bash
if ! [[ $TERM == "dumb" ]]; then
|
|
# Don't load if running in dumb terminal, they don't work properly
|
|
source $HOME/.local/lib/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
|
|
source $HOME/.local/lib/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
source $HOME/.local/lib/zsh/zsh-history-substring-search/zsh-history-substring-search.zsh
|
|
|
|
bindkey '^P' history-substring-search-up
|
|
bindkey '^N' history-substring-search-down
|
|
fi
|