summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-07-19 12:16:35 +0200
committerDaniel Weipert <git@mail.dweipert.de>2024-07-19 12:16:35 +0200
commit2b3d610076ae2d8c71ed96d2d381b112e9d85db9 (patch)
tree7cff0620a40a7c4b2225a08b9891a24e44687cd4
parent782c23a6807390464ab21ad826ebcb51b708500e (diff)
[zshrc] move compdump and hist files to .cache folderHEADmain
-rw-r--r--.zshrc6
1 files changed, 5 insertions, 1 deletions
diff --git a/.zshrc b/.zshrc
index 4433554..3183d1f 100644
--- a/.zshrc
+++ b/.zshrc
@@ -1,9 +1,13 @@
export ZSH="$HOME/.config/zsh/ohmyzsh"
-CASE_SENSITIVE="false"
+ZSH_CACHE="$HOME/.cache/zsh"
+CASE_SENSITIVE="false"
HYPHEN_INSENSITIVE="true"
+ZSH_COMPDUMP="$ZSH_CACHE/zcompdump-$HOST"
+
+HISTFILE="$ZSH_CACHE/zsh_history"
HIST_STAMPS="dd.mm.yyyy"
plugins=(git gitfast)