dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | README | LICENSE

commit cf792a9f45d40313a4a61a2762a8df5aadfba61e (patch)
parent 0f981c053497c6834acc31a258217a0e8411807d
Author: Alex Karle <alex@alexkarle.com>
Date:   Wed, 16 Feb 2022 00:01:35 -0500

colors: Try out NO_COLOR=1

I've been curious about monochrome colorschemes and, well,
using them in vi(1) and ed(1). This patch takes it to the
next level by exporting the preference and removing color
from the git ui :O

Let's see how long this lasts...

Diffstat:
M.gitconfig | 3+++
M.shrc | 1+
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/.gitconfig b/.gitconfig @@ -5,6 +5,9 @@ email = alex@alexkarle.com name = Alex Karle +[color] + ui = false + [alias] co = checkout b = branch diff --git a/.shrc b/.shrc @@ -6,5 +6,6 @@ HISTSIZE=100000 export EDITOR=${EDITOR:-ed} export VISUAL=${VISUAL:-vi} export PAGER=${PAGER:-less} +export NO_COLOR=1 alias ll='ls -lahF'