mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-11-24 04:21:31 +01:00
Bugfixes
This commit is contained in:
parent
7c9dc917dd
commit
cf0b5ee0f1
|
@ -72,7 +72,7 @@ alias ssh1="ssh -o ControlMaster=no"
|
||||||
|
|
||||||
|
|
||||||
# Some colorizing options for grc
|
# Some colorizing options for grc
|
||||||
if [[ "$TERM" != dumb ]] && (( $+commands[grc] )) ; then
|
if [[ "$TERM" != dumb ]] && [[ -f $(which grc) ]] ; then
|
||||||
# Prevent grc aliases from overriding zsh completions.
|
# Prevent grc aliases from overriding zsh completions.
|
||||||
setopt COMPLETE_ALIASES
|
setopt COMPLETE_ALIASES
|
||||||
|
|
||||||
|
@ -89,7 +89,6 @@ if [[ "$TERM" != dumb ]] && (( $+commands[grc] )) ; then
|
||||||
ifconfig \
|
ifconfig \
|
||||||
last \
|
last \
|
||||||
ldap \
|
ldap \
|
||||||
ls \
|
|
||||||
make \
|
make \
|
||||||
mount \
|
mount \
|
||||||
mtr \
|
mtr \
|
||||||
|
@ -104,7 +103,7 @@ if [[ "$TERM" != dumb ]] && (( $+commands[grc] )) ; then
|
||||||
|
|
||||||
# Set alias for available commands.
|
# Set alias for available commands.
|
||||||
for cmd in $cmds ; do
|
for cmd in $cmds ; do
|
||||||
if (( $+commands[$cmd] )) ; then
|
if [[ -f $(which $cmd) ]] ; then
|
||||||
alias $cmd="grc --colour=auto $cmd"
|
alias $cmd="grc --colour=auto $cmd"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue
Block a user