nix-home/home/kakoune/source-pwd

17 lines
241 B
Plaintext
Raw Permalink Normal View History

2021-09-29 21:11:33 +00:00
#!/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