2023-10-18 23:12:01 +00:00
|
|
|
#!/usr/bin/env sh
|
2023-06-25 11:21:14 +00:00
|
|
|
|
|
|
|
# shellcheck disable=2089
|
|
|
|
[ -x "$(command -v bat)" ] && export MANPAGER="sh -c 'col -bx | bat -l man -p'"
|
|
|
|
# shellcheck disable=2090
|
|
|
|
[ -x "$(command -v moar)" ] && export MANPAGER="moar"
|
|
|
|
[ -x "$(command -v moar)" ] && export PAGER="moar"
|
|
|
|
|
|
|
|
[ -x "$(command -v nvim)" ] && export EDITOR="$(which nvim)"
|
|
|
|
|
|
|
|
[ -x "$(command -v gpgconf)" ] && export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
|
|
|
|
|
|
|
|
[ -x "$(command -v home-manager)" ] \
|
|
|
|
&& [ -x "$(command -v nix)" ] \
|
|
|
|
&& [ -f "$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh" ] \
|
|
|
|
&& . "$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh"
|