First commit

This commit is contained in:
James Dugan 2025-02-04 21:06:01 -07:00
commit 847c9e64c0
51 changed files with 4058 additions and 0 deletions

6
.config/bat/config Normal file
View file

@ -0,0 +1,6 @@
# Requires https://github.com/mhanberg/everforest-textmate installed in ~/.config/bat/themes/
--theme="Everforest Dark"
--style="full"
--map-syntax="uv.lock:TOML"

20
.config/bat/setup.sh Executable file
View file

@ -0,0 +1,20 @@
#!/usr/bin/env sh
# Small bootstrap script that sets up the necessary syntax grammars and themes
# for this particular bat config.
theme_dir="$(bat --config-dir)/themes"
syntax_dir="$(bat --config-dir)/syntaxes"
# Themes
mkdir -p $theme_dir
cd $theme_dir
git clone https://github.com/mhanberg/everforest-textmate
# Syntaxes
mkdir -p $syntax_dir
cd $syntax_dir
git clone https://github.com/eugenesvk/sublime-KDL
# Build bat cache
bat cache --build