Move kakoune config

This commit is contained in:
Natsu Kagami 2021-09-29 17:11:33 -04:00
parent 71edf2a8ea
commit 796c574c6a
7 changed files with 1292 additions and 0 deletions

16
kakoune/source-pwd Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env fish
if test (pwd) = "/home/natsukagami/.config/kak"
exit 0
end
while true
set kakrc (pwd)/.kakrc
if test -f $kakrc
echo source $kakrc
end
if test (pwd) = "/"
exit 0
end
cd ..
end