mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
24 lines
629 B
Plaintext
24 lines
629 B
Plaintext
# shellcheck shell=bash
|
||
|
||
export HIST_STAMPS="yyyy-mm-dd"
|
||
|
||
# Larger bash history (allow 32³ entries; default is 500)
|
||
export HISTSIZE=32768
|
||
export HISTFILESIZE=$HISTSIZE
|
||
export HISTCONTROL=ignoredups
|
||
|
||
# Make some commands not show up in history
|
||
export HISTIGNORE="ls:cd:cd -:pwd:exit:date:* --help"
|
||
|
||
# And include the parameter for ZSH
|
||
export HISTORY_IGNORE="(ls|cd|cd -|pwd|exit|date|* --help)"
|
||
|
||
# Highlight section titles in manual pages
|
||
export LESS_TERMCAP_md="$ORANGE"
|
||
|
||
# Don’t clear the screen after quitting a manual page
|
||
export MANPAGER="less -X"
|
||
|
||
# Always enable colored `grep` output
|
||
export GREP_OPTIONS="--color=auto"
|