Bunch of changes inspired by r00k

This commit is contained in:
2013-07-07 17:25:47 -04:00
parent c5a1ed1258
commit cf3eea13fb
141 changed files with 22472 additions and 519 deletions

View File

@@ -0,0 +1,15 @@
## Vim Colorscheme 'Elrodeo'
This is a dark low contrast vim color scheme influenced by colors used by Chris Granger (@ibdknox) for Clojure code, e.g., on the Noir web page (webnoir.org).
## Screenshot
![screenshot](https://github.com/chmllr/vim-colorscheme-elrodeo/raw/master/screenshot.png)
## Installation
The color scheme can be installed as a pathogen plugin, i.e., just check it out to `~/.vim/bundle`, or copy the content of `colors`to `~/.vim/colors`.
## Usage
In Vim: `:colorscheme elrodeo`.

View File

@@ -0,0 +1,63 @@
" Vim color file
" Name: elrodeo
" Maintainer: Christian Müller (@chmllr)
" Version: 1.0
"
" Inspired by the color scheme used by ibdknox.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="elrodeo"
" the nexz block is copied from the wombat theme:
" Vim >= 7.0 specific colors
if version >= 700
hi CursorLine guibg=#2d2d2d
hi CursorColumn guibg=#2d2d2d
hi MatchParen guifg=#f6f3e8 guibg=#857b6f gui=bold
hi Pmenu guifg=#f6f3e8 guibg=#444444
hi PmenuSel guifg=#000000 guibg=#cae682
endif
" General colors
hi Normal guibg=#404040 guifg=#d0d0d0
hi Cursor guifg=#656565 guibg=#d0d0d0
hi NonText guifg=#808080 guibg=#404040
hi LineNr guifg=#666666 guibg=#383838
hi StatusLine guifg=#f6f3e8 guibg=#444444
hi StatusLineNC guifg=#857b6f guibg=#444444
hi VertSplit guifg=#444444 guibg=#444444
hi Folded guibg=#384048 guifg=#a0a8b0
hi Title guifg=#f6f3e8 guibg=NONE gui=bold
hi Visual guifg=#f6f3e8 guibg=#444444
hi SpecialKey guifg=#808080 guibg=#343434
" Syntax highlighting
hi Comment guifg=#677c99
hi Operator guifg=#a080f0
hi Todo guifg=#333333 guibg=#cccccc
hi Constant guifg=white
hi String guifg=#bbddff
hi Identifier guifg=#30c080
hi Define guifg=#30c080
hi Function guifg=#30c080
hi Macro guifg=#30c080
hi Number guifg=#319899
hi Special guifg=#30c080
hi Conditional guifg=#30c080
hi Boolean guifg=#99dd99
hi Delimiter guifg=#999999
hi Character guifg=#55d2ee
hi Search guifg=black guibg=#30c080
hi Visual guibg=#303030
" not used in Clojure (left as in wombat)
hi Type guifg=#cae682
hi Statement guifg=#8ac6f2
hi Keyword guifg=#8ac6f2
hi PreProc guifg=#e5786d

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB