Mercurial > dotfiles
changeset 263:fab71b4ac0b9
Colorscheme fixes
author | zegervdv <zegervdv@me.com> |
---|---|
date | Sun, 24 May 2020 19:13:33 +0200 |
parents | 44d179225271 |
children | bfa07144db1b |
files | dot_config/kitty/kitty.conf dot_config/nvim/executable_init.vim dot_zshrc |
diffstat | 3 files changed, 14 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/dot_config/kitty/kitty.conf Sun May 24 10:24:04 2020 +0200 +++ b/dot_config/kitty/kitty.conf Sun May 24 19:13:33 2020 +0200 @@ -25,8 +25,10 @@ color4 #b3deef color12 #b3deef -color5 #d3b987 -color13 #d3b987 +# color5 #d3b987 +# color13 #d3b987 +color5 #c678dd +color13 #c678dd color6 #73cef4 color14 #73cef4
--- a/dot_config/nvim/executable_init.vim Sun May 24 10:24:04 2020 +0200 +++ b/dot_config/nvim/executable_init.vim Sun May 24 19:13:33 2020 +0200 @@ -248,6 +248,9 @@ \ } \ } \} +let g:onedark_color_overrides = { + \ "yellow": {"cterm": "3", "gui": "#ffc24b"} + \} set background=dark colorscheme onedark if s:darwin
--- a/dot_zshrc Sun May 24 10:24:04 2020 +0200 +++ b/dot_zshrc Sun May 24 19:13:33 2020 +0200 @@ -65,6 +65,13 @@ bindkey '^p' history-substring-search-up bindkey '^n' history-substring-search-down +export LESS_TERMCAP_mb=$(printf "\e[1;31m") +export LESS_TERMCAP_md=$(printf "\e[1;31m") +export LESS_TERMCAP_me=$(printf "\e[0m") +export LESS_TERMCAP_se=$(printf "\e[0m") +export LESS_TERMCAP_so=$(printf "\e[1;44;33m") +export LESS_TERMCAP_ue=$(printf "\e[0m") +export LESS_TERMCAP_us=$(printf "\e[1;32m") export CLICOLOR=1 export LS_COLORS='no=00;37:fi=00:di=00;33:ln=04;36:pi=40;33:so=01;35:bd=40;33;01:'