]> git.phdru.name Git - dotfiles.git/commitdiff
.profile: Add `$FIGNORE`
authorOleg Broytman <phd@phdru.name>
Wed, 10 Jul 2024 13:03:28 +0000 (16:03 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 11 Jul 2024 10:33:54 +0000 (13:33 +0300)
Ignore object files, backup files, python byte code files, temporary files.

.profile

index 362b5b26a68f379f587bebd1d9b32b8713946ea2..1922ffabeccd71e03ed562da7675dc81b70649ab 100644 (file)
--- 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"