blob: 57f2b3cf8260c4e75035687822bf115a3e00e297 (
plain) (
blame)
| 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 | " Vim color file
" Maintainer:  Thomas Schmall <ts_nowhere@yahoo.com>
" Last Change:  2004 June 16
" Version:1.0
" URL: http://www.oxpal.com/index.php?o=dev_vim&lan=en
"
" Note: you can type :set number! to activate or deactivate the line numbering, wich also
" looks similar to Director
set background=light
hi clear
if exists("syntax_on")
    syntax reset
endif
let g:colors_name="lingodirector"
hi Normal  guifg=black	guibg=white   ctermfg=Black  ctermbg=white
hi Title   guifg=black	guibg=white   ctermfg=Black  ctermbg=white  gui=BOLD
hi lCursor guibg=Cyan   guifg=NONE
hi LineNr	 guifg=white  guibg=#8c9bfa
" syntax highlighting groups
hi Comment    ctermfg=Red guifg=#c80000 gui=NONE
hi Operator   term=None cterm=None gui=None
hi Identifier	ctermfg=Green guifg=#008000  gui=NONE
hi Statement	ctermfg=Blue  guifg=#0000c8  gui=NONE
hi TypeDef    ctermfg=Blue  guifg=#0000c8  gui=NONE
hi Type       ctermfg=Blue  guifg=#0000c8  gui=NONE
hi Boolean    ctermfg=Blue  guifg=#0000c8  gui=NONE
hi String     ctermfg=Gray  guifg=#808080  gui=NONE
hi Number     ctermfg=Gray  guifg=#808080  gui=NONE
hi Constant   ctermfg=Gray  guifg=#808080  gui=NONE
hi Function   ctermfg=Green guifg=#008040  gui=NONE
hi PreProc	  ctermfg=Green guifg=#008040  gui=NONE
hi Keyword	  ctermfg=Green guifg=#008040  gui=NONE
"set number
 |