dotfiles/fish/.config/fish/functions/lg.fish

9 lines
110 B
Fish

function lg
if type -q lazygit > /dev/null
lazygit $argv
else
git status
end
end