diff options
m--------- | private | 0 | ||||
-rw-r--r-- | profile | 9 |
2 files changed, 9 insertions, 0 deletions
diff --git a/private b/private -Subproject b0c7e860ee85a97ff0939f16b34574b753a6bb8 +Subproject 169cbe1eac2ef2c1166b604345f88d42a7b1fa8 @@ -19,6 +19,15 @@ for profile in "$HOME"/.nix-profile/etc/profile.d/*; do source "$profile" done +# GLab +if command -v glab >/dev/null; then + if [[ -n "${BASH_VERSINFO:-}" ]]; then + source <(glab completion -s bash) + elif [[ -n "${ZSH_VERSION:-}" ]]; then + source <(glab completion -s zsh) + compdef _glab glab + fi +fi # Rest of the profile run only if login is from linux console [[ "$(tty)" != /dev/tty* ]] && return |