From: Oleg Broytman Date: Wed, 10 Jul 2024 13:03:28 +0000 (+0300) Subject: .profile: Add `$FIGNORE` X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=77d450c2cfdb627ed23a61e762ec4a3cf588ec77;p=dotfiles.git .profile: Add `$FIGNORE` Ignore object files, backup files, python byte code files, temporary files. --- diff --git a/.profile b/.profile index 362b5b2..1922ffa 100644 --- a/.profile +++ b/.profile @@ -129,6 +129,9 @@ if [ -t 0 ] ; then VISUAL="$EDITOR" export EDITOR FCEDIT VISUAL + FIGNORE='.o:~:.pyc:.pyo:.tmp*' + export FIGNORE + HISTCONTROL=ignoreboth HISTIGNORE='&: *:?:??:clear:exit:logout:llp' HISTFILE="$HOME/.sh_history"