feat: theming more stuff with dracula
This commit is contained in:
parent
bf1ab5d93a
commit
85842b9060
5 changed files with 46 additions and 12 deletions
nixos/home
|
@ -51,7 +51,6 @@
|
|||
qbit = "mosh matt@10.0.0.121 -- ssh -t matt@10.0.0.128 'tmux -2u new -At laptop'";
|
||||
};
|
||||
sessionVariables = { # see configuration.nix
|
||||
TERM = "xterm-color";
|
||||
};
|
||||
|
||||
profileExtra = ''
|
||||
|
@ -104,6 +103,40 @@
|
|||
printf '\r\n'
|
||||
done
|
||||
}
|
||||
|
||||
### DRACULA
|
||||
|
||||
export FZF_DEFAULT_OPTS='--color=fg:#f8f8f2,hl:#bd93f9 --color=fg+:#f8f8f2,hl+:#bd93f9 --color=info:#ffb86c,prompt:#50fa7b,pointer:#ff79c6 --color=marker:#ff79c6,spinner:#ffb86c,header:#6272a4'
|
||||
|
||||
#man-page colors
|
||||
export LESS_TERMCAP_mb=$'\e[1;31m' # begin bold
|
||||
export LESS_TERMCAP_md=$'\e[1;34m' # begin blink
|
||||
export LESS_TERMCAP_so=$'\e[01;45;37m' # begin reverse video
|
||||
export LESS_TERMCAP_us=$'\e[01;36m' # begin underline
|
||||
export LESS_TERMCAP_me=$'\e[0m' # reset bold/blink
|
||||
export LESS_TERMCAP_se=$'\e[0m' # reset reverse video
|
||||
export LESS_TERMCAP_ue=$'\e[0m' # reset underline
|
||||
|
||||
if [ "$TERM" = "linux" ]; then
|
||||
printf %b '\e[40m' '\e[8]' # set default background to color 0 'dracula-bg'
|
||||
printf %b '\e[37m' '\e[8]' # set default foreground to color 7 'dracula-fg'
|
||||
printf %b '\e]P0282a36' # redefine 'black' as 'dracula-bg'
|
||||
printf %b '\e]P86272a4' # redefine 'bright-black' as 'dracula-comment'
|
||||
printf %b '\e]P1ff5555' # redefine 'red' as 'dracula-red'
|
||||
printf %b '\e]P9ff7777' # redefine 'bright-red' as '#ff7777'
|
||||
printf %b '\e]P250fa7b' # redefine 'green' as 'dracula-green'
|
||||
printf %b '\e]PA70fa9b' # redefine 'bright-green' as '#70fa9b'
|
||||
printf %b '\e]P3f1fa8c' # redefine 'brown' as 'dracula-yellow'
|
||||
printf %b '\e]PBffb86c' # redefine 'bright-brown' as 'dracula-orange'
|
||||
printf %b '\e]P4bd93f9' # redefine 'blue' as 'dracula-purple'
|
||||
printf %b '\e]PCcfa9ff' # redefine 'bright-blue' as '#cfa9ff'
|
||||
printf %b '\e]P5ff79c6' # redefine 'magenta' as 'dracula-pink'
|
||||
printf %b '\e]PDff88e8' # redefine 'bright-magenta' as '#ff88e8'
|
||||
printf %b '\e]P68be9fd' # redefine 'cyan' as 'dracula-cyan'
|
||||
printf %b '\e]PE97e2ff' # redefine 'bright-cyan' as '#97e2ff'
|
||||
printf %b '\e]P7f8f8f2' # redefine 'white' as 'dracula-fg'
|
||||
printf %b '\e]PFffffff' # redefine 'bright-white' as '#ffffff'
|
||||
fi
|
||||
'';
|
||||
#initExtra = ''
|
||||
#'';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue