nix-conf/config/bash/history
2024-08-23 18:55:31 -05:00

15 lines
353 B
Bash

#!/usr/bin/env bash
# history file settings
# don't add duplicate lines, lines starting with space to history
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# eternal bash history
HISTFILESIZE=
HISTSIZE=
HISTTIMEFORMAT="[%F %T] "
HISTFILE=~/.cache/bash_history
PROMPT_COMMAND="history -a; $PROMPT_COMMAND"