this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add no-verify completion for git

Builtin fish completions don't include this for some reason.

+10
+10
.config/fish/completions/git.fish
··· 1 + if begin 2 + ! command -q __fish_git_using_command 3 + and test -f /usr/local/share/fish/completions/git.fish 4 + end 5 + source /usr/local/share/fish/completions/git.fish 6 + end 7 + 8 + # Add completion for --no-verify 9 + complete -x -c git -n '__fish_git_using_command commit' \ 10 + -l no-verify -s n -d 'Bypass the pre-commit and commit-msg hooks'