aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/zsh/.zshenv16
1 files changed, 8 insertions, 8 deletions
diff --git a/.config/zsh/.zshenv b/.config/zsh/.zshenv
index c4d18ca..663b328 100644
--- a/.config/zsh/.zshenv
+++ b/.config/zsh/.zshenv
@@ -2,7 +2,7 @@
export PATH=$HOME/.bin:$HOME/.local/bin:$HOME/.scripts:/usr/local/bin:/sbin:/usr/sbin:$PATH
export PATH="/data/data/com.termux/files/usr/local/bin:$PATH"
-# Skip the not really helping Ubuntu global compinit
+# Skip the not really helpful global compinit
skip_global_compinit=1
## Conditionally set WM(window manager)
@@ -244,16 +244,16 @@ export XMODIFIERS='@im=fcitx'
# Start blinking
-#export LESS_TERMCAP_mb=$(tput bold; tput setaf 2) # green
+export LESS_TERMCAP_mb=$(tput bold; tput setaf 2) # green
# Start bold
-#export LESS_TERMCAP_md=$(tput bold; tput setaf 2) # green
+export LESS_TERMCAP_md=$(tput bold; tput setaf 2) # green
# Start stand out
-#export LESS_TERMCAP_so=$(tput bold; tput setaf 3) # yellow
+export LESS_TERMCAP_so=$(tput bold; tput setaf 3) # yellow
# End standout
-#export LESS_TERMCAP_se=$(tput rmso; tput sgr0)
+export LESS_TERMCAP_se=$(tput rmso; tput sgr0)
# Start underline
-#export LESS_TERMCAP_us=$(tput smul; tput bold; tput setaf 1) # red
+export LESS_TERMCAP_us=$(tput smul; tput bold; tput setaf 1) # red
# End Underline
-#export LESS_TERMCAP_ue=$(tput sgr0)
+export LESS_TERMCAP_ue=$(tput sgr0)
# End bold, blinking, standout, underline
-#export LESS_TERMCAP_me=$(tput sgr0).
+export LESS_TERMCAP_me=$(tput sgr0).