switch to solarized light
This commit is contained in:
parent
a023e4b6f4
commit
07f1292475
3 changed files with 28 additions and 25 deletions
6
shellrc
6
shellrc
|
@ -338,8 +338,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=white,bold'
|
ZSH_HIGHLIGHT_STYLES[path]='fg=black,bold'
|
||||||
ZSH_HIGHLIGHT_STYLES[path_prefix]='fg=white,bold'
|
ZSH_HIGHLIGHT_STYLES[path_prefix]='fg=black,bold'
|
||||||
fi
|
fi
|
||||||
# history substring search à la fish from https://github.com/zsh-users/zsh-history-substring-search
|
# 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"
|
hs_script="${HOME}/.zsh-history-substring-search/zsh-history-substring-search.zsh"
|
||||||
|
@ -374,7 +374,7 @@ else
|
||||||
prompt_bang=">${reset}"
|
prompt_bang=">${reset}"
|
||||||
precmd() {
|
precmd() {
|
||||||
if [[ -z ${hide_info} ]]; then
|
if [[ -z ${hide_info} ]]; then
|
||||||
prompt_cwd="${bwhite}${PWD}${reset}"
|
prompt_cwd="${bold}${PWD}${reset}"
|
||||||
if [[ ${UID} -eq 1000 || ${UID} -eq 1205 ]]; then
|
if [[ ${UID} -eq 1000 || ${UID} -eq 1205 ]]; then
|
||||||
prompt_user=''
|
prompt_user=''
|
||||||
else
|
else
|
||||||
|
|
10
vimrc
10
vimrc
|
@ -1,5 +1,5 @@
|
||||||
set nocompatible
|
set nocompatible
|
||||||
set background=dark
|
set background=light
|
||||||
set backspace=indent,eol,start
|
set backspace=indent,eol,start
|
||||||
set clipboard=exclude:.*
|
set clipboard=exclude:.*
|
||||||
set foldmethod=marker
|
set foldmethod=marker
|
||||||
|
@ -113,6 +113,7 @@ if v:version >= 700
|
||||||
Plugin 'morhetz/gruvbox'
|
Plugin 'morhetz/gruvbox'
|
||||||
Plugin 'MichaelMalick/vim-colors-bluedrake'
|
Plugin 'MichaelMalick/vim-colors-bluedrake'
|
||||||
Plugin 'romainl/Apprentice'
|
Plugin 'romainl/Apprentice'
|
||||||
|
Plugin 'vdrandom/forked-solarized.vim'
|
||||||
|
|
||||||
" syntax highlight plugins
|
" syntax highlight plugins
|
||||||
Plugin 'puppetlabs/puppet-syntax-vim'
|
Plugin 'puppetlabs/puppet-syntax-vim'
|
||||||
|
@ -164,9 +165,10 @@ if v:version >= 700
|
||||||
map! <S-Insert> <MiddleMouse>
|
map! <S-Insert> <MiddleMouse>
|
||||||
endif
|
endif
|
||||||
|
|
||||||
let g:gruvbox_italic=0
|
let g:solarized_italic=0
|
||||||
let g:gruvbox_underline=0
|
let g:solarized_underline=0
|
||||||
colorscheme gruvbox
|
let g:solarized_visibility='low'
|
||||||
|
colorscheme solarized
|
||||||
else
|
else
|
||||||
colorscheme elflord
|
colorscheme elflord
|
||||||
endif
|
endif
|
||||||
|
|
37
xresources
37
xresources
|
@ -23,8 +23,8 @@ URxvt.urgentOnBell: true
|
||||||
URxvt.cursorUnderline: true
|
URxvt.cursorUnderline: true
|
||||||
URxvt.termName: rxvt-unicode-256color
|
URxvt.termName: rxvt-unicode-256color
|
||||||
URxvt.internalBorder: 0
|
URxvt.internalBorder: 0
|
||||||
URxvt.fading: 33
|
!URxvt.fading: 33
|
||||||
URxvt.depth: 32
|
!URxvt.depth: 32
|
||||||
|
|
||||||
! urxvt perl extensions
|
! urxvt perl extensions
|
||||||
URxvt.perl-ext-common: default,matcher,clipboard
|
URxvt.perl-ext-common: default,matcher,clipboard
|
||||||
|
@ -34,24 +34,25 @@ URxvt.keysym.C-C: perl:clipboard:copy
|
||||||
URxvt.keysym.C-V: perl:clipboard:paste
|
URxvt.keysym.C-V: perl:clipboard:paste
|
||||||
! }}}
|
! }}}
|
||||||
! {{{ urxvt colors
|
! {{{ urxvt colors
|
||||||
!Light - URxvt.foreground: #657b83
|
! alternative solarized light
|
||||||
!Light - URxvt.background: #fdf6e3
|
!URxvt.foreground: #839496
|
||||||
!Light - URxvt.cursorColor: #002b36
|
!URxvt.background: [80]#00141A
|
||||||
!Light - URxvt.colorBD: #002b36
|
!URxvt.cursorColor: #fdf6e3
|
||||||
!Light - URxvt.color0: #eee8d5
|
!URxvt.colorBD: #fdf6e3
|
||||||
!Light - URxvt.color7: #073642
|
|
||||||
!Light - URxvt.color8: #fdf6e3
|
|
||||||
!Light - URxvt.color10: #93a1a1
|
|
||||||
!Light - URxvt.color11: #839496
|
|
||||||
!Light - URxvt.color12: #657b83
|
|
||||||
!Light - URxvt.color14: #586e75
|
|
||||||
!Light - URxvt.color15: #002b36
|
|
||||||
|
|
||||||
URxvt.foreground: #839496
|
!URxvt.color0: #eee8d5
|
||||||
URxvt.background: [80]#00141A
|
!URxvt.color7: #073642
|
||||||
URxvt.cursorColor: #fdf6e3
|
!URxvt.color8: #fdf6e3
|
||||||
URxvt.colorBD: #fdf6e3
|
!URxvt.color10: #93a1a1
|
||||||
|
!URxvt.color11: #839496
|
||||||
|
!URxvt.color12: #657b83
|
||||||
|
!URxvt.color14: #586e75
|
||||||
|
!URxvt.color15: #002b36
|
||||||
|
|
||||||
|
URxvt.foreground: #657b83
|
||||||
|
URxvt.background: #fdf6e3
|
||||||
|
URxvt.cursorColor: #002b36
|
||||||
|
URxvt.colorBD: #002b36
|
||||||
|
|
||||||
URxvt.color0: #073642
|
URxvt.color0: #073642
|
||||||
URxvt.color1: #dc322f
|
URxvt.color1: #dc322f
|
||||||
|
|
Loading…
Reference in a new issue