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
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env fish
function _fish_ai_explain --description "Turn a command into a comment using AI." --argument-names command
if test ("$_fish_ai_install_dir/bin/lookup_setting" "debug") = True
set -f output ("$_fish_ai_install_dir/bin/explain" "$command" | \
string collect)
else
set -f output ("$_fish_ai_install_dir/bin/explain" "$command" | \
string collect 2> /dev/null)
end
echo -n "$output"
end