]>
Commit | Line | Data |
---|---|---|
1 | " Vim color file | |
2 | " Maintainer: Ruda Moura <ruda@rudix.org> | |
3 | " Last Change: Sun Feb 24 18:50:47 BRT 2008 | |
4 | ||
5 | highlight clear Normal | |
6 | set background& | |
7 | ||
8 | highlight clear | |
9 | ||
10 | if exists("syntax_on") | |
11 | syntax reset | |
12 | endif | |
13 | ||
14 | let colors_name = "satori" | |
15 | ||
16 | " Vim colors | |
17 | highlight Normal ctermfg=NONE cterm=NONE | |
18 | highlight Comment ctermfg=Cyan cterm=NONE | |
19 | highlight Constant ctermfg=Red cterm=NONE | |
20 | highlight Number ctermfg=Red cterm=NONE | |
21 | highlight Identifier ctermfg=NONE cterm=NONE | |
22 | highlight Statement ctermfg=NONE cterm=Bold | |
23 | highlight PreProc ctermfg=Blue cterm=NONE | |
24 | highlight Type ctermfg=Magenta cterm=NONE | |
25 | highlight Special ctermfg=Magenta cterm=NONE | |
26 | ||
27 | " Vim monochrome | |
28 | highlight Normal term=NONE | |
29 | highlight Comment term=NONE | |
30 | highlight Constant term=Underline | |
31 | highlight Number term=Underline | |
32 | highlight Identifier term=NONE | |
33 | highlight Statement term=Bold | |
34 | highlight PreProc term=NONE | |
35 | highlight Type term=Bold | |
36 | highlight Special term=NONE | |
37 | ||
38 | " GVim colors | |
39 | highlight Normal guifg=NONE gui=NONE | |
40 | highlight Comment guifg=DarkCyan gui=NONE | |
41 | highlight Constant guifg=Red gui=NONE | |
42 | highlight Number guifg=Red gui=Bold | |
43 | highlight Identifier guifg=NONE gui=NONE | |
44 | highlight Statement guifg=NONE gui=Bold | |
45 | highlight PreProc guifg=Blue gui=NONE | |
46 | highlight Type guifg=Magenta gui=NONE | |
47 | highlight Special guifg=Red gui=Bold |