From bbbc83d929e97d1aad95a8b81d3c2864bc4b827f Mon Sep 17 00:00:00 2001 From: HerrCraziDev Date: Mon, 9 Sep 2024 15:59:39 +0200 Subject: [PATCH] Enable colors for some tools --- .termrc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.termrc b/.termrc index acda968..3eb4a44 100644 --- a/.termrc +++ b/.termrc @@ -35,6 +35,12 @@ export EDITOR=/usr/bin/vim export LANG="en_US.UTF-8" export LANGUAGE="en_US.UTF-8" +# Colors +alias diff='diff --color=auto' +alias grep='grep --color=auto' +alias ip='ip -color=auto' +alias ls='ls --color=auto' + # Decompress raw zlib files (.dat) zlibd() (printf "\x1f\x8b\x08\x00\x00\x00\x00\x00" | cat - "$@" | gzip -dc) @@ -69,6 +75,9 @@ if [ -n "$WSLENV" ] ; then # Enable entr workaround for incomplete inotify support on WSL export ENTR_INOTIFY_WORKAROUND=1 + # Add Ubuntu debuginfod server + export DEBUGINFOD_URLS="https://debuginfod.ubuntu.com" + # Re-init serial reinit() (unset _SERIAL_INIT; reload)