diff options
author | Karel Kočí <cynerd@email.cz> | 2024-04-30 07:48:03 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-04-30 07:48:03 +0200 |
commit | 44580da0ae35aec6ebc20210abb5b42105042eed (patch) | |
tree | 07f1b936a8753e1b2e15f296299745f4a5ead155 /profile | |
parent | 832a5732513a69501ab6067a8aca642b939748b3 (diff) | |
download | myconfigs-44580da0ae35aec6ebc20210abb5b42105042eed.tar.gz myconfigs-44580da0ae35aec6ebc20210abb5b42105042eed.tar.bz2 myconfigs-44580da0ae35aec6ebc20210abb5b42105042eed.zip |
profile: load Glab completion
Diffstat (limited to 'profile')
-rw-r--r-- | profile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |