update dotfiles

This commit is contained in:
2026-05-29 02:51:42 +03:00
parent 200ff2d852
commit 1de712a83b
20 changed files with 1120 additions and 115 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env fish
function _fish_ai_fix --description "Fix a command using AI." --argument-names previous_command
if test ("$_fish_ai_install_dir/bin/lookup_setting" "debug") = True
set -f output ("$_fish_ai_install_dir/bin/fix" "$previous_command")
else
set -f output ("$_fish_ai_install_dir/bin/fix" "$previous_command" 2> /dev/null)
end
echo -n "$output"
end