all repos — nixfiles @ f8f3f8b33e91b545324013fa3c293bdff2d1db9e

System and user configuration, managed by nix and home-manager

user/settings/fish/functions/ghq.fish (view raw)

function ghq
    set cmd $argv[1]
    switch $cmd
    case "get"
        command git-get $argv[2..]
    case "status" "st"
        command git-get list $argv[2..]
    case "ls"
        command ghq list $argv[2..]
    case '*'
        command ghq $argv
    end
end