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

View file

@ -0,0 +1,13 @@
# local-config
evaluate-commands %sh{
cwd=$(pwd)
while [ $cwd != "/" ]; do
path="$cwd/.local.kak"
if [ -f $path ]; then
printf "%s\n" "source $path"
break
fi
cd ..
cwd=$(pwd)
done
}