feat(bat): upsert config file

This commit is contained in:
AJ ONeal
2023-02-26 06:17:42 +00:00
parent 9f7ce9842c
commit 410bb1c3e3

View File

@@ -27,6 +27,11 @@ __init_bat() {
# chmod a+x ~/.local/opt/bat-v0.15.4/bin/bat
chmod a+x "$pkg_src_cmd"
if ! [ -e ~/.config/bat/config ]; then
mkdir -p ~/.config/bat/
touch ~/.config/bat/config
fi
}
}