diff options
author | Karel Kočí <cynerd@email.cz> | 2024-07-04 11:10:46 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-07-04 11:10:46 +0200 |
commit | 61b967a8eba888616f62d1c4346d089b91e050ad (patch) | |
tree | faaa8fb9bd56ce3a571da0b007b023131320a86c /profile | |
parent | b6454f674ed8c0fe7a5dd880c7065e12688e97b6 (diff) | |
download | myconfigs-61b967a8eba888616f62d1c4346d089b91e050ad.tar.gz myconfigs-61b967a8eba888616f62d1c4346d089b91e050ad.tar.bz2 myconfigs-61b967a8eba888616f62d1c4346d089b91e050ad.zip |
profile: remove glab completion load
It is now part of the glab package.
Diffstat (limited to 'profile')
-rw-r--r-- | profile | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -19,16 +19,6 @@ 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 |