From b5b0bc49eee847ebd0fcbe07a84e19e4929a0c08 Mon Sep 17 00:00:00 2001 From: Luminiferous Date: Sun, 8 Feb 2026 11:50:55 +0100 Subject: [PATCH] Added .gitignore and updated zsh history location --- .gitignore | 1 + .zshrc | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f22d22 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.zsh_history diff --git a/.zshrc b/.zshrc index 875e9f0..c99d0cb 100644 --- a/.zshrc +++ b/.zshrc @@ -1 +1,6 @@ export ZSH=$HOME/.config/zsh +export HISTFILE=$ZSH/.zsh_history +export HISTSIZE=10000 +export SAVEHIST=10000 +setopt HIST_IGNORE_ALL_DUPS +setopt HIST_FIND_NO_DUPS