mirror of
https://github.com/mhinz/vim-galore.git
synced 2025-06-08 19:09:32 +08:00
24 lines
1.1 KiB
VimL
Executable File
24 lines
1.1 KiB
VimL
Executable File
" Vim color file
|
|
" Maintainer: Rudá Moura <ruda.moura@gmail.com>
|
|
" Last Change: Mon Oct 18 23:09:26 BRST 2010
|
|
|
|
set background=light
|
|
highlight clear
|
|
if exists("syntax on")
|
|
syntax reset
|
|
endif
|
|
|
|
let g:colors_name = "zen"
|
|
|
|
highlight Normal term=none ctermfg=black cterm=none guifg=black gui=none
|
|
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=black cterm=none guifg=black gui=none
|
|
highlight Statement term=bold ctermfg=black cterm=bold guifg=black gui=bold
|
|
highlight Operator term=bold ctermfg=black cterm=bold guifg=black gui=bold
|
|
highlight PreProc term=bold ctermfg=green 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
|