Initial commit

This commit is contained in:
duck
2025-12-17 21:43:32 +05:00
commit 591831666f
38 changed files with 2382 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
set -gx EDITOR nvim
set -gx MANPAGER nvim +Man!
set -U fish_greeting
set history_ignore rm
if test -n "$fish_private_mode"
function fish_title
echo "Private Shell"
end
end
function ll
command exa -l $argv
end
function cat
command bat $argv
end
function fish_should_add_to_history
for cmd in $history_ignore
string match -qr "^$cmd" -- $argv; and return 1
end
return 0
end
if status is-interactive
starship init fish | source
zoxide init fish | source
end