aboutsummaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc11
1 files changed, 11 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index 93a955b..4513c25 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -15,6 +15,17 @@ pacaur() {
15 env pacman_program="pacaur" /usr/bin/pacmatic "$@" 15 env pacman_program="pacaur" /usr/bin/pacmatic "$@"
16} 16}
17 17
18man() {
19 env LESS_TERMCAP_mb=$'\E[01;31m' \
20 LESS_TERMCAP_md=$'\E[01;38;5;74m' \
21 LESS_TERMCAP_me=$'\E[0m' \
22 LESS_TERMCAP_se=$'\E[0m' \
23 LESS_TERMCAP_so=$'\E[38;5;246m' \
24 LESS_TERMCAP_ue=$'\E[0m' \
25 LESS_TERMCAP_us=$'\E[04;38;5;146m' \
26 man "$@"
27}
28
18#PS1='[\u@\h \W]\$ ' 29#PS1='[\u@\h \W]\$ '
19PS1='[\d][\t]\u on \h\n\w => ' 30PS1='[\d][\t]\u on \h\n\w => '
20 31