From 8aad11aed1d80229e758cf7d97d6f575effe63b6 Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Wed, 10 Aug 2022 13:55:23 +0200 Subject: [PATCH] Configure bat, the nicer cat --- .config/bat/config | 6 ++++++ .profile | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 .config/bat/config diff --git a/.config/bat/config b/.config/bat/config new file mode 100644 index 0000000..c14fa05 --- /dev/null +++ b/.config/bat/config @@ -0,0 +1,6 @@ +--theme="TwoDark" + +--style="numbers,changes,header" + +--map-syntax ".flake8:ini" +--map-syntax "poetry.lock:toml" diff --git a/.profile b/.profile index 53d759c..2491fa5 100644 --- a/.profile +++ b/.profile @@ -9,6 +9,8 @@ export VISUAL=$EDITOR export REPOS="$HOME/repos" +export BAT_CONFIG_PATH="$HOME/.config/bat/config" + export LESSHISTFILE="$HOME/.lesshst" export PYENV_ROOT="$HOME/.pyenv"