forked from garybernhardt/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdarkzen.vim
25 lines (21 loc) · 1.13 KB
/
darkzen.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
" Vim color file
" Maintainer: Ruda Moura <[email protected]>
" Last Change: $Date: 2005/11/12 15:40:06 $
set background=dark
highlight clear
if exists("syntax on")
syntax reset
endif
let g:colors_name = "darkzen"
highlight Normal term=none ctermfg=gray cterm=none guifg=gray gui=none guibg=black
highlight Comment term=none ctermfg=cyan cterm=none guifg=cyan gui=none
highlight Constant term=none ctermfg=red cterm=none guifg=red gui=none
highlight Special term=none ctermfg=red cterm=bold guifg=red gui=bold
highlight Identifier term=none ctermfg=gray cterm=none guifg=gray gui=none
highlight Statement term=bold ctermfg=gray cterm=bold guifg=gray gui=bold
highlight Operator term=bold ctermfg=gray cterm=bold guifg=gray gui=bold
highlight PreProc term=bold ctermfg=lightgreen cterm=none guifg=green gui=none
highlight Type term=bold ctermfg=magenta cterm=none guifg=magenta gui=none
highlight String term=none ctermfg=red cterm=none guifg=red gui=none
highlight Number term=none ctermfg=red cterm=none guifg=red gui=none
" vim:ts=2:sw=2:et