AutoYADM commit: 2025-03-28 20:30:08
This commit is contained in:
parent
81805b3bf9
commit
d47777c8b9
5 changed files with 35 additions and 205 deletions
10
.config/fish/functions/cless.fish
Normal file
10
.config/fish/functions/cless.fish
Normal file
|
@ -0,0 +1,10 @@
|
|||
function cless -d "Configure less to colorize styled text using environment variables before executing a command that will use less"
|
||||
set -x LESS_TERMCAP_md (set_color --bold 0280A5) # start bold
|
||||
set -x LESS_TERMCAP_me (set_color normal) # end bold
|
||||
set -x LESS_TERMCAP_us (set_color --underline 5BA502) # start underline
|
||||
set -x LESS_TERMCAP_ue (set_color normal) # end underline
|
||||
set -x LESS_TERMCAP_so (set_color --reverse F0CB02) # start standout
|
||||
set -x LESS_TERMCAP_se (set_color normal) # end standout
|
||||
|
||||
$argv
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue