better structure

This commit is contained in:
2025-10-19 00:14:19 +02:00
parent 057afc086e
commit 8733656ed9
630 changed files with 81 additions and 137 deletions

22
config/fish/config.fish Executable file
View File

@@ -0,0 +1,22 @@
if not status is-interactive
return
end
# no greeting
set fish_greeting
if test -d $HOME/.config/fish/prev.d
for file in $HOME/.config/fish/prev.d/*.fish
if test -f $file
source $file
end
end
end
if test -d $HOME/.config/fish/post.d
for file in $HOME/.config/fish/post.d/*.fish
if test -f $file
source $file
end
end
end