diff options
-rwxr-xr-x | src/dotfiles/zsh/zshrc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dotfiles/zsh/zshrc b/src/dotfiles/zsh/zshrc index 82af5af..c604ad1 100755 --- a/src/dotfiles/zsh/zshrc +++ b/src/dotfiles/zsh/zshrc @@ -11,8 +11,8 @@ RPROMPT='%B${vcs_info_msg_0_}' zstyle ':vcs_info:git:*' formats '%b' # History in cache directory: -HISTSIZE=10000000 -SAVEHIST=10000000 +HISTSIZE=1000000000 +SAVEHIST=1000000000 HISTFILE="${XDG_CACHE_HOME:-$HOME/.cache}/zsh/history" @@ -95,4 +95,3 @@ alias gt="cd ~/testProj" alias gc="cd ~/.config" alias gu="cd /usr/local/bin" - |