diff options
author | terminaldweller <thabogre@gmail.com> | 2022-04-17 15:53:44 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-04-17 15:53:44 +0000 |
commit | c94222d3c29789909f761aff31777bdc5b036c9c (patch) | |
tree | d1749737e9209556493a61e435dbae3371dba407 /root/.bashrc | |
parent | update (diff) | |
download | scripts-c94222d3c29789909f761aff31777bdc5b036c9c.tar.gz scripts-c94222d3c29789909f761aff31777bdc5b036c9c.zip |
bunch of stuff
Diffstat (limited to 'root/.bashrc')
-rw-r--r-- | root/.bashrc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/root/.bashrc b/root/.bashrc index ff70aa8..3be781e 100644 --- a/root/.bashrc +++ b/root/.bashrc @@ -11,4 +11,14 @@ alias ....="cd ../../.." alias .....="cd ../../../.." alias ......="cd ../../../../.." +export LESS_TERMCAP_mb=$'\e[01;31m' # begin blinking +export LESS_TERMCAP_md=$'\e[01;38;5;74m' # begin bold +export LESS_TERMCAP_me=$'\e[0m' # end mode +export LESS_TERMCAP_se=$'\e[0m' # end standout-mode +export LESS_TERMCAP_so=$'\e[38;5;246m' # begin standout-mode - info box +export LESS_TERMCAP_ue=$'\e[0m' # end underline +export LESS_TERMCAP_us=$'\e[04;38;5;146m' # begin underline + export PS1="\[$(tput bold)\]\[\033[38;5;9m\]\u\[$(tput sgr0)\] \[$(tput sgr0)\]\[\033[38;5;10m\]@\[$(tput sgr0)\] \[$(tput sgr0)\]\[$(tput bold)\]\[\033[38;5;12m\]\h\[$(tput sgr0)\] \[$(tput sgr0)\]\[\033[38;5;170m\][\[$(tput sgr0)\] \[$(tput sgr0)\]\[$(tput bold)\]\[\033[38;5;228m\]\w\[$(tput sgr0)\] \[$(tput sgr0)\]\[\033[38;5;211m\]]\[$(tput sgr0)\] \[$(tput sgr0)\]\[$(tput bold)\]\[\033[38;5;171m\]\\$\[$(tput sgr0)\] " + +alias man="man -O width=210" |