about summary refs log tree commit diff stats
path: root/bashrc
diff options
context:
space:
mode:
authorCase Duckworth2024-05-30 12:47:11 -0500
committerCase Duckworth2024-05-30 12:47:11 -0500
commit22bc1e1879da0d99e5e1d79b10742b8cc9fd0521 (patch)
treecd813c6d8bfeebe83901b2d749ce97f1231dd547 /bashrc
downloaddots-22bc1e1879da0d99e5e1d79b10742b8cc9fd0521.tar.gz
dots-22bc1e1879da0d99e5e1d79b10742b8cc9fd0521.zip
Initial commit
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc20
1 files changed, 20 insertions, 0 deletions
diff --git a/bashrc b/bashrc new file mode 100644 index 0000000..66a0bc3 --- /dev/null +++ b/bashrc
@@ -0,0 +1,20 @@
1# ~/.bashrc
2
3test -f $HOME/.shrc && . $HOME/.shrc
4
5# History
6HISTFILESIZE=-1
7HISTSIZE=100000
8
9shopt -s histappend
10
11shopt -s histreedit
12shopt -s histverify
13
14HISTTIMEFORMAT="%FT%T%z"
15
16HISTCONTROL=erasedups
17HISTIGNORE='&:[ ]*'
18HISTIGNORE="$HISTIGNORE:ls:exit:cd"
19
20PROMPT_COMMAND="history -a;${PROMPT_COMMAND:-:}"