diff options
author | Himbeer <himbeerserverde@gmail.com> | 2024-02-16 20:05:05 +0100 |
---|---|---|
committer | Himbeer <himbeerserverde@gmail.com> | 2024-02-16 20:05:05 +0100 |
commit | 6edbeda07f16fd158f68e83f2cae40542e0db772 (patch) | |
tree | abcf56e8f6b53ef5a2c7b79c9366fca496120c62 /zshrc | |
parent | e5f1fd3feab02f49327e9e29d96bf847edd74ba8 (diff) |
enable zsh history
Diffstat (limited to 'zshrc')
-rw-r--r-- | zshrc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -18,6 +18,8 @@ fi # Else: Actual ZSH RC export HISTFILE="${HOME}/.zsh_history" +export HISTSIZE=30000 +export SAVEHIST=30000 export LIBCLANG_PATH="/usr/lib" export PATH="$HOME/.cargo/bin:$HOME/go/bin:$HOME/bin:/usr/local/go/bin:$PATH" @@ -36,6 +38,7 @@ autoload -Uz promptinit promptinit setopt autocd +setopt appendhistory eval $(dircolors -b) |