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

9 lines
110 B
Fish
Raw Normal View History

2018-08-06 17:29:56 +00:00
function lg
2018-09-14 07:31:13 +00:00
if type -q lazygit > /dev/null
lazygit $argv
else
git status
end
2018-08-06 17:29:56 +00:00
end
2018-08-11 05:38:12 +00:00