remove man conversion

This commit is contained in:
Spirit 👾 2024-07-29 06:13:48 +03:00 committed by GitHub
parent a7b418b686
commit 66b51e83b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

14
.bashrc
View File

@ -1,5 +1,7 @@
# .bashrc
export PATH=$PATH:$HOME/.local/bin
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
@ -11,16 +13,4 @@ HISTSIZE= HISTFILESIZE=
# Auto cd
shopt -s autocd
export PATH=$PATH:$HOME/.local/bin
source $HOME/.bash_aliases
man() {
LESS_TERMCAP_md=$'\e[01;31m' \
LESS_TERMCAP_me=$'\e[0m' \
LESS_TERMCAP_se=$'\e[0m' \
LESS_TERMCAP_so=$'\e[01;44;37m' \
LESS_TERMCAP_ue=$'\e[0m' \
LESS_TERMCAP_us=$'\e[01;32m' \
command man "$@"
}