18 lines
587 B
Plaintext
18 lines
587 B
Plaintext
# Editor used by CLI
|
|
export EDITOR="${EDITOR:-omarchy-launch-editor --inline}"
|
|
export SUDO_EDITOR="$EDITOR"
|
|
export BAT_THEME=ansi
|
|
|
|
# Color man pages with bat
|
|
export MANROFFOPT="-c"
|
|
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
|
|
|
|
# Idempotent — already sourced by /etc/skel/.bashrc; re-source here so SSH and
|
|
# other non-interactive non-login bash sessions still get OMARCHY_PATH.
|
|
[ -r /usr/share/omarchy/default/bash/env-bootstrap ] && . /usr/share/omarchy/default/bash/env-bootstrap
|
|
|
|
case ":$PATH:" in
|
|
*":$HOME/.local/bin:"*) ;;
|
|
*) export PATH="$PATH:$HOME/.local/bin" ;;
|
|
esac
|