nix-home/packages/common/nki-kakoune/source-pwd.fish

15 lines
220 B
Fish
Raw Permalink Normal View History

2024-10-07 12:30:47 +00:00
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