14 lines
551 B
Text
14 lines
551 B
Text
alias l='ls -lah'
|
|
alias ll='ls -lah'
|
|
|
|
$XONSH_COLOR_STYLE='vim'
|
|
|
|
# Coloured man page support
|
|
# using 'less' env vars (format is '\E[<brightness>;<colour>m')
|
|
$LESS_TERMCAP_mb = "\033[01;31m" # begin blinking
|
|
$LESS_TERMCAP_md = "\033[01;31m" # begin bold
|
|
$LESS_TERMCAP_me = "\033[0m" # end mode
|
|
$LESS_TERMCAP_so = "\033[01;44;36m" # begin standout-mode (bottom of screen)
|
|
$LESS_TERMCAP_se = "\033[0m" # end standout-mode
|
|
$LESS_TERMCAP_us = "\033[00;36m" # begin underline
|
|
$LESS_TERMCAP_ue = "\033[0m" # end underline
|