back to black background
This commit is contained in:
parent
9df479d1f0
commit
57a88694d8
3 changed files with 11 additions and 15 deletions
11
shellrc
11
shellrc
|
@ -341,15 +341,8 @@ if is_zsh; then
|
||||||
if [[ -r ${hl_script} ]]; then
|
if [[ -r ${hl_script} ]]; then
|
||||||
source ${hl_script}
|
source ${hl_script}
|
||||||
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
|
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
|
||||||
ZSH_HIGHLIGHT_STYLES[path]='fg=black,bold'
|
ZSH_HIGHLIGHT_STYLES[path]='fg=white,bold'
|
||||||
ZSH_HIGHLIGHT_STYLES[path_prefix]='fg=black,bold'
|
ZSH_HIGHLIGHT_STYLES[path_prefix]='fg=white,bold'
|
||||||
fi
|
|
||||||
# history substring search à la fish from https://github.com/zsh-users/zsh-history-substring-search
|
|
||||||
hs_script="${HOME}/.zsh-history-substring-search/zsh-history-substring-search.zsh"
|
|
||||||
if [[ -r ${hs_script} ]]; then
|
|
||||||
source ${hs_script}
|
|
||||||
bindkey '^[[A' history-substring-search-up
|
|
||||||
bindkey '^[[B' history-substring-search-down
|
|
||||||
fi
|
fi
|
||||||
# }}}
|
# }}}
|
||||||
else
|
else
|
||||||
|
|
|
@ -17,11 +17,14 @@ browser = firefox
|
||||||
size_hints = true
|
size_hints = true
|
||||||
|
|
||||||
[colors]
|
[colors]
|
||||||
cursor = #002b36
|
cursor = #fdf6e3
|
||||||
foreground = #657b83
|
#light cursor = #002b36
|
||||||
foreground_bold = #002b36
|
foreground = #839496
|
||||||
background = #fdf6e3
|
#light foreground = #657b83
|
||||||
#background = rgba(0, 20, 26, 0.8)
|
foreground_bold = #fdf6e3
|
||||||
|
#light foreground_bold = #002b36
|
||||||
|
background = rgba(0, 20, 26, 0.8)
|
||||||
|
#light background = #fdf6e3
|
||||||
#fbt's background = #00141A
|
#fbt's background = #00141A
|
||||||
#default solarized background = #002b36
|
#default solarized background = #002b36
|
||||||
|
|
||||||
|
|
2
vimrc
2
vimrc
|
@ -1,5 +1,5 @@
|
||||||
set nocompatible
|
set nocompatible
|
||||||
set background=light
|
set background=dark
|
||||||
set backspace=indent,eol,start
|
set backspace=indent,eol,start
|
||||||
set cursorline
|
set cursorline
|
||||||
set foldmethod=marker
|
set foldmethod=marker
|
||||||
|
|
Loading…
Reference in a new issue