try dark theme again
This commit is contained in:
parent
e8e25d2dd1
commit
4ff5bb76c0
3 changed files with 12 additions and 14 deletions
2
shellrc
2
shellrc
|
@ -216,6 +216,7 @@ if is_zsh; then
|
|||
HISTSIZE=1000
|
||||
HISTFILE="${HOME}/.histfile"
|
||||
|
||||
#hl_script='/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh'
|
||||
extras=( "${HOME}/.zshrc.extras" )
|
||||
|
||||
# completion
|
||||
|
@ -346,7 +347,6 @@ if is_zsh; then
|
|||
# }}}
|
||||
# {{{ plugins
|
||||
# command line syntax highlight from https://github.com/zsh-users/zsh-syntax-highlighting
|
||||
hl_script='/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh'
|
||||
if [[ -r ${hl_script} ]]; then
|
||||
source ${hl_script}
|
||||
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
|
||||
|
|
8
vimrc
8
vimrc
|
@ -1,5 +1,5 @@
|
|||
set nocompatible
|
||||
set background=light
|
||||
set background=dark
|
||||
set backspace=indent,eol,start
|
||||
set cursorline
|
||||
set foldmethod=marker
|
||||
|
@ -15,8 +15,7 @@ set showcmd
|
|||
set smartcase
|
||||
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%04l,%04v][%p%%]\ [LEN=%L]
|
||||
set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc
|
||||
" scroll before reaching the first / final line
|
||||
set scrolloff=3
|
||||
" scroll before reaching the first / final line set scrolloff=3
|
||||
set sidescrolloff=15
|
||||
set sidescroll=1
|
||||
" disable bell
|
||||
|
@ -81,7 +80,8 @@ if v:version >= 700
|
|||
" general plugins
|
||||
Plug 'Lokaltog/vim-easymotion' "easy motion
|
||||
Plug 'Shougo/unite.vim' "fuzzy file open
|
||||
Plug 'bling/vim-airline' "stylish info display
|
||||
Plug 'vim-airline/vim-airline' "stylish info display
|
||||
Plug 'vim-airline/vim-airline-themes' "themes for airline
|
||||
Plug 'bling/vim-bufferline' "stylish buffer display
|
||||
Plug 'jeetsukumaran/vim-buffergator' "buffer management
|
||||
Plug 'mhinz/vim-signify' "version control system gutter info
|
||||
|
|
16
xresources
16
xresources
|
@ -17,7 +17,6 @@ URxvt.boldFont: terminus_bold
|
|||
URxvt.italicFont: terminus_bold
|
||||
URxvt.boldItalicFont: terminus_bold
|
||||
URxvt.saveLines: 1000
|
||||
!URxvt.cursorUnderline: true
|
||||
URxvt.iso14755: false
|
||||
URxvt.visualBell: false
|
||||
URxvt.urgentOnBell: true
|
||||
|
@ -33,16 +32,15 @@ URxvt.keysym.C-C: perl:clipboard:copy
|
|||
URxvt.keysym.C-V: perl:clipboard:paste
|
||||
! }}}
|
||||
! {{{ urxvt colors
|
||||
!URxvt.foreground: #839496
|
||||
!URxvt.background: [80]#00141A
|
||||
!URxvt.cursorColor: #fdf6e3
|
||||
!URxvt.colorBD: #fdf6e3
|
||||
URxvt.foreground: #839496
|
||||
URxvt.background: #002b36
|
||||
URxvt.colorBD: #fdf6e3
|
||||
|
||||
!URxvt.foreground: #657b83
|
||||
!URxvt.background: #fdf6e3
|
||||
!URxvt.colorBD: #002b36
|
||||
|
||||
URxvt.foreground: #657b83
|
||||
URxvt.background: #fdf6e3
|
||||
!URxvt.cursorColor: #002b36
|
||||
URxvt.cursorColor: #dc322f
|
||||
URxvt.colorBD: #002b36
|
||||
|
||||
URxvt.color0: #073642
|
||||
URxvt.color1: #dc322f
|
||||
|
|
Loading…
Reference in a new issue