first commit

This commit is contained in:
2025-06-14 20:26:14 +02:00
commit 1edfd60dbd
351 changed files with 34592 additions and 0 deletions

31
fish/config.fish Executable file
View File

@@ -0,0 +1,31 @@
if not status is-interactive
return
end
# no greeting
set fish_greeting
# ls alias
alias ls="ls --hyperlink=auto --color=auto"
# nvim
if type -q nvim
set -x EDITOR nvim
set -x VISUAL nvim
end
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