nix-conf/user/config/bash/history

15 lines
353 B
Plaintext
Raw Permalink Normal View History

2024-08-23 19:55:31 -04:00
#!/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"