Compare commits

...

3 Commits

Author SHA1 Message Date
ThatXliner 4d2a0dce50
Merge 6bd4d716f3 into 7a3695aadf 2025-01-13 15:11:30 -08:00
Michele Bologna 7a3695aadf
fix(grc): add linuxbrew path (#12903) 2025-01-12 14:25:00 +01:00
ThatXliner 6bd4d716f3
Create pkgx.plugin.zsh 2024-08-18 08:32:03 -07:00
2 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,7 @@ files=(
/etc/grc.zsh # default
/usr/local/etc/grc.zsh # homebrew darwin-x64
/opt/homebrew/etc/grc.zsh # homebrew darwin-arm64
/home/linuxbrew/.linuxbrew/etc/grc.zsh # linuxbrew
/usr/share/grc/grc.zsh # Gentoo Linux (app-misc/grc)
)

View File

@ -0,0 +1,5 @@
# If pkgx is not found, don't do the rest of the script
if (( ! $+commands[pkgx] )); then
return
fi
source <(pkgx --shellcode)