Files
dotfiles/.config/bash/bashrc
Julian Prein 15a95846e5 bash: Increase history file size
My zsh history was overwritten by bash, like it used to be before I
setup the bashrc. How did this happen again?
2023-12-01 03:43:06 +01:00

8 lines
250 B
Bash

# TODO: Why was zsh_history truncated?
HISTFILESIZE=999999999
if [[ ! -d "${XDG_DATA_HOME:-$HOME/.local/share}"/bash ]]; then
mkdir -p "${XDG_DATA_HOME:-$HOME/.local/share}"/bash
fi
HISTFILE="${XDG_DATA_HOME:-$HOME/.local/share}"/bash/bash_history