Mercurial > dotfiles
comparison dot_zshrc @ 661:b26c4c6ac25c
Fix colors for man pages
author | zegervdv <zegervdv@me.com> |
---|---|
date | Sun, 25 Sep 2022 20:11:45 +0000 |
parents | 407d461cd377 |
children | fdce323431f4 |
comparison
equal
deleted
inserted
replaced
660:407d461cd377 | 661:b26c4c6ac25c |
---|---|
67 bindkey -M menuselect 'l' vi-forward-char | 67 bindkey -M menuselect 'l' vi-forward-char |
68 | 68 |
69 # Enter interactive search | 69 # Enter interactive search |
70 bindkey -M menuselect '^xi' vi-insert | 70 bindkey -M menuselect '^xi' vi-insert |
71 | 71 |
72 export LESS_TERMCAP_mb=$(printf "\e[1;31m") | |
73 export LESS_TERMCAP_md=$(printf "\e[1;31m") | |
74 export LESS_TERMCAP_me=$(printf "\e[0m") | |
75 export LESS_TERMCAP_se=$(printf "\e[0m") | |
76 export LESS_TERMCAP_so=$(printf "\e[1;30;43m") | |
77 export LESS_TERMCAP_ue=$(printf "\e[0m") | |
78 export LESS_TERMCAP_us=$(printf "\e[1;32m") | |
79 | |
80 export CLICOLOR=1 | 72 export CLICOLOR=1 |
81 export LS_COLORS=$(cat ~/.lscolors) | 73 export LS_COLORS=$(cat ~/.lscolors) |
82 export LSCOLORS=$LS_COLORS | 74 export LSCOLORS=$LS_COLORS |
75 | |
76 export LESS_TERMCAP_mb=$'\e[1;31m' | |
77 export LESS_TERMCAP_md=$'\e[38;2;47;111;159;48;2;244;250;255m' | |
78 export LESS_TERMCAP_me=$'\e[0m' | |
79 export LESS_TERMCAP_se=$'\e[0m' | |
80 export LESS_TERMCAP_so=$'\e[38;2;215;23;7m' | |
81 export LESS_TERMCAP_ue=$'\e[0m' | |
82 export LESS_TERMCAP_us=$'\e[1;32m' | |
83 export GROFF_NO_SGR=1 | |
83 | 84 |
84 # Options | 85 # Options |
85 setopt monitor | 86 setopt monitor |
86 setopt auto_cd | 87 setopt auto_cd |
87 setopt cdablevars | 88 setopt cdablevars |