projects
/
~bandali
/
configs
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
bash: history-related tweaks
[~bandali/configs]
/
.bashrc
diff --git
a/.bashrc
b/.bashrc
index
a2763dc
..
cce2dc8
100644
(file)
--- a/
.bashrc
+++ b/
.bashrc
@@
-1,5
+1,12
@@
-# If not running interactively, don't do anything
-# [[ $- != *i* ]] && return
+# various bash tweaks
+shopt -s histappend
+shopt -s cmdhist
+HISTSIZE=
+HISTFILESIZE=
+HISTCONTROL=ignoreboth
+HISTIGNORE='ls:l:s:bg:fg:history'
+HISTTIMEFORMAT='%F %T '
+stty stop ""
# aliases
alias ls='ls --color=auto'
# aliases
alias ls='ls --color=auto'
@@
-21,6
+28,10
@@
aur() {
# echo -e "\033[5 q" # blinking
echo -e "\033[6 q" # non-blinking
# echo -e "\033[5 q" # blinking
echo -e "\033[6 q" # non-blinking
+
+# If not running interactively, don't do anything else
+[[ $- != *i* ]] && return
+
a_prompt() {
cwd=$(pwd | sed -e "s!$HOME!~!" | sed -re "s!([^/])[^/]+/!\1/!g")
printf $cwd
a_prompt() {
cwd=$(pwd | sed -e "s!$HOME!~!" | sed -re "s!([^/])[^/]+/!\1/!g")
printf $cwd