mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
`which` has been deprecated in Debian (at least, the rolling release installed on chromebooks via Linux Containers) https://github.com/ohmybash/oh-my-bash/pull/239#issuecomment-1000974461 Co-authored-by: Koichi Murase <myoga.murase@gmail.com>
27 lines
559 B
Bash
27 lines
559 B
Bash
#! bash oh-my-bash.module
|
|
## jobs
|
|
#setopt long_list_jobs
|
|
|
|
## pager
|
|
env_default PAGER 'less'
|
|
env_default LESS '-R'
|
|
|
|
## super user alias
|
|
_omb_util_alias _='sudo'
|
|
_omb_util_alias please='sudo'
|
|
|
|
## more intelligent acking for ubuntu users
|
|
if _omb_util_binary_exists ack-grep; then
|
|
_omb_util_alias afind='ack-grep -il'
|
|
else
|
|
_omb_util_alias afind='ack -il'
|
|
fi
|
|
|
|
# only define LC_CTYPE if undefined
|
|
if [[ -z "$LC_CTYPE" && -z "$LC_ALL" ]]; then
|
|
export LC_CTYPE=${LANG%%:*} # pick the first entry from LANG
|
|
fi
|
|
|
|
# recognize comments
|
|
shopt -s interactive_comments
|