From 77d450c2cfdb627ed23a61e762ec4a3cf588ec77 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 10 Jul 2024 16:03:28 +0300 Subject: [PATCH] .profile: Add `$FIGNORE` Ignore object files, backup files, python byte code files, temporary files. --- .profile | 3 +++ 1 file changed, 3 insertions(+) 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" -- 2.39.5