dotfiles/fish/functions/_tide_fish_colorize.fish

8 lines
151 B
Fish
Raw Permalink Normal View History

2023-11-20 11:20:55 -06:00
function _tide_fish_colorize
if command -q fish_indent
echo -ns "$argv" | fish_indent --ansi
else
echo -ns "$argv"
end
end