dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 63fa31214a47430b9c07b0b49d7b04f57ea7a65f
parent fe8bb360727b026b43c6084ab42a7b755549ddbc
Author: Chris Bracken <chris@bracken.jp>
Date:   Wed, 21 Aug 2024 15:36:15 -0700

zsh: add fbug alias for work

Short for `gh -R flutter/flutter issue`, since all issues are associated
with that repo, regardless of which repo you're working in, and for me,
that's typically the engine.

Diffstat:
M.config/zsh/aliases | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/.config/zsh/aliases b/.config/zsh/aliases @@ -25,3 +25,6 @@ alias g='egrep -i' alias cp='cp -ip' alias mv='mv -i' alias rm='rm -i' + +# work +alias fbug='gh -R flutter/flutter issue'