aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2019-06-07 17:37:54 -0400
committertdro <tdro@users.noreply.github.com>2019-06-07 17:37:54 -0400
commit2225a74e70ca9f843e8da40fa6825bc0ad601818 (patch)
tree1340c9f18ff67e183686f88f9a08f256793776b2 /.bashrc
parentb38d54a0b22080205ff10c06ac3bda6d5189b902 (diff)
downloaddotfiles-2225a74e70ca9f843e8da40fa6825bc0ad601818.tar.gz
dotfiles-2225a74e70ca9f843e8da40fa6825bc0ad601818.tar.bz2
dotfiles-2225a74e70ca9f843e8da40fa6825bc0ad601818.zip
.bashrc: Shellcheck
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc14
1 files changed, 7 insertions, 7 deletions
diff --git a/.bashrc b/.bashrc
index 9751fa2..67edcdb 100644
--- a/.bashrc
+++ b/.bashrc
@@ -124,13 +124,13 @@ alias rangerinf='while true; do ranger; done'
# color man
man() {
- env LESS_TERMCAP_mb=$(printf "\e[1;31m") \
- LESS_TERMCAP_md=$(printf "\e[1;31m") \
- LESS_TERMCAP_me=$(printf "\e[0m") \
- LESS_TERMCAP_se=$(printf "\e[0m") \
- LESS_TERMCAP_so=$(printf "\e[1;44;33m") \
- LESS_TERMCAP_ue=$(printf "\e[0m") \
- LESS_TERMCAP_us=$(printf "\e[1;32m") \
+ env LESS_TERMCAP_mb="$(printf "\e[1;31m")" \
+ LESS_TERMCAP_md="$(printf "\e[1;31m")" \
+ LESS_TERMCAP_me="$(printf "\e[0m")" \
+ LESS_TERMCAP_se="$(printf "\e[0m")" \
+ LESS_TERMCAP_so="$(printf "\e[1;44;33m")" \
+ LESS_TERMCAP_ue="$(printf "\e[0m")" \
+ LESS_TERMCAP_us="$(printf "\e[1;32m")" \
man "$@"
}