Update .zshrc

This commit is contained in:
Vlad Doster 2020-05-18 23:11:36 -05:00 committed by GitHub
parent bb907f9197
commit d45ad4d443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,12 +9,12 @@ stty stop undef # Disable ctrl-s to freeze terminal.
# History in cache directory:
HISTSIZE=10000
SAVEHIST=10000
HISTFILE="${XDG_CACHE_HOME}/zsh/zsh/history"
HISTFILE="${XDG_CACHE_HOME}"/zsh/zsh/history
# Load aliases and shortcuts if existent.
[ -f "${XDG_CONFIG_HOME}/shortcutrc" ] && source "${XDG_CONFIG_HOME}/shortcutrc"
[ -f "${XDG_CONFIG_HOME}/aliasrc" ] && source "${XDG_CONFIG_HOME}/aliasrc"
[ -f "${XDG_CONFIG_HOME}/zshnameddirrcv ] && source "${XDG_CONFIG_HOME}/zshnameddirrc"
[ -f "${XDG_CONFIG_HOME}/zshnameddirrcv" ] && source "${XDG_CONFIG_HOME}/zshnameddirrc"
# Basic auto/tab complete:
autoload -U compinit