Move stuff into /home

This commit is contained in:
Natsu Kagami 2021-10-27 12:35:53 -04:00
parent d9bf49b218
commit dc1b4e9371
26 changed files with 3 additions and 1 deletions

16
home/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