]>
Commit | Line | Data |
---|---|---|
0d23b6e5 BB |
1 | " Vim color file |
2 | " Maintainer: Thomas Schmall www.oxpal.com | |
3 | " Last Change: Nov 2 2009 | |
4 | " URL: http://www.vim.org/scripts/script.php?script_id=792 | |
5 | " Version: 1.4 | |
6 | ||
7 | " This color scheme uses a light grey background. | |
8 | ||
9 | " Last Changes: | |
10 | " *line number colors changed | |
11 | " *current line highlighting | |
12 | ||
13 | ||
14 | " First remove all existing highlighting. | |
15 | set background=light | |
16 | hi clear | |
17 | if exists("syntax_on") | |
18 | syntax reset | |
19 | endif | |
20 | ||
21 | let g:colors_name = "simpleandfriendly" | |
22 | ||
23 | "set the highlighting of the current line to true - then give it a color | |
24 | "delete next line to turn off current line highlighting for this color scheme | |
25 | set cul | |
26 | hi cursorline gui=underline | |
27 | "guibg=grey91 | |
28 | hi visual guibg=grey80 guifg=black | |
29 | ||
30 | ||
31 | "Set nice colors #DC6210 | |
32 | "Cursor is Cyan when ":lmap" mappings are active | |
33 | hi lCursor guibg=Cyan guifg=NONE | |
34 | hi LineNr guifg=white guibg=#acbbff | |
35 | ||
36 | "Text below the last line is darker grey | |
37 | hi NonText guibg=grey80 | |
38 | "Normal text is black background is grey | |
39 | hi Normal guifg=black guibg=grey89 ctermfg=Black ctermbg=LightGrey | |
40 | hi Comment guifg=Orange guibg=grey94 ctermfg=DarkCyan term=bold | |
41 | "Constants are not underlined but have a slightly lighter background | |
42 | hi Constant guifg=#8080a0 guibg=grey92 gui=NONE term=underline | |
43 | hi String guifg=#80a0ff guibg=grey93 gui=NONE term=underline | |
44 | hi Number guifg=#80a5ff guibg=grey91 gui=NONE ctermfg=Gray term=none | |
45 | "Words like _if_ or _else_ (Grey27) | |
46 | hi Statement guifg=#4A2B99 gui=NONE ctermfg=Blue | |
47 | ||
48 | hi Title guifg=red ctermfg=red gui=NONE term=BOLD | |
49 | "color for _NONE_ for instance: | |
50 | hi PreProc term=underline ctermfg=LightBlue guifg=#DC6210 | |
51 | "color for _guifg_ for instance: (SlateBlue works here nice too) | |
52 | hi Type guifg=#008080 ctermfg=LightGreen gui=None term=underline | |
53 | hi Function guifg=#61577A term=bold | |
54 | "in lingo the defined functions. (alt: SlateBlue) | |
55 | hi Identifier guifg=Seagreen | |
56 | "hi Identifier term=underline cterm=bold ctermfg=Cyan guifg=#40ffff | |
57 | ||
58 | "hi Repeat term=underline ctermfg=White guifg=white | |
59 | "hi Ignore guifg=bg ctermfg=black | |
60 | hi Error term=reverse ctermbg=Red ctermfg=White guibg=Red guifg=White | |
61 | hi Todo term=standout ctermbg=Yellow ctermfg=Black guifg=Blue guibg=Yellow | |
62 | "Special Characters | |
63 | hi Special guibg=grey90 guifg=Slateblue gui=UNDERLINE | |
64 | ||
65 | hi operator guifg=gray25 ctermfg=Black term=bold cterm=bold gui=bold |