···11+# Files managed by `fisher`
22+fisher_install/
+7
.config/fish/functions/rdsh.fish
···11+function rdsh
22+ set -l tmux_cmd tmux new dsh
33+ if test $TERM_PROGRAM = "iTerm.app";
44+ set tmux_cmd tmux -CC new dsh
55+ end
66+ rpush && vssh -t "$tmux_cmd"
77+end
+3
.config/fish/functions/rpmlint.fish
···11+function rpmlint
22+ docker run rpmlint $argv
33+end