]>
Commit | Line | Data |
---|---|---|
1 | " ------------------------------------------------------------------ | |
2 | " Filename: synic.vim | |
3 | " Last Modified: May, 14 2007 (10:47) | |
4 | " Maintainer: Adam Olsen (arolsen@gmail.com) | |
5 | " Copyright: 2007 Adam Olsen | |
6 | " This script is free software; you can redistribute it and/or | |
7 | " modify it under the terms of the GNU General Public License as | |
8 | " published by the Free Software Foundation; either version 2 of | |
9 | " the License, or (at your option) any later version. | |
10 | " Description: Vim colorscheme file. | |
11 | " Install: Put this file in the users colors directory (~/.vim/colors) | |
12 | " then load it with :colorscheme synic | |
13 | " ------------------------------------------------------------------ | |
14 | """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
15 | "" | |
16 | "" SPECIAL NOTE: | |
17 | "" I believe this colorscheme is based off of Hans | |
18 | "" Fugal's colorscheme "desert". | |
19 | "" http://hans.fugal.net/vim/colors/desert.html | |
20 | "" I might be wrong on this... if it looks like it was based off | |
21 | "" of your colorscheme, let me know so I can give you credits. | |
22 | "" | |
23 | """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
24 | ||
25 | ||
26 | set background=dark | |
27 | hi clear | |
28 | if exists("syntax_on") | |
29 | syntax reset | |
30 | endif | |
31 | ||
32 | let g:colors_name = "synic" | |
33 | ||
34 | hi Normal guifg=ivory guibg=Black | |
35 | ||
36 | hi TabLineFill guifg=#272d2f guibg=#272d2f gui=None | |
37 | hi TabLine guifg=MistyRose3 guibg=#272d2f gui=None | |
38 | hi TabLineSel guifg=LightBlue3 guibg=#272d2f gui=None | |
39 | hi ErrorMsg gui=NONE guifg=Red guibg=Linen | |
40 | hi IncSearch gui=NONE guibg=LightGreen guifg=Black | |
41 | hi ModeMsg gui=NONE guifg=fg guibg=bg | |
42 | hi StatusLine gui=NONE guifg=LightBlue3 guibg=#272d2f | |
43 | hi StatusLineNC gui=NONE guifg=MistyRose3 guibg=#272d2f | |
44 | hi VertSplit gui=NONE guifg=LightBlue4 guibg=Black | |
45 | hi Visual gui=reverse guifg=LightBlue4 guibg=Black | |
46 | hi VisualNOS gui=underline guifg=fg guibg=bg | |
47 | hi DiffText gui=NONE guifg=Yellow guibg=LightSkyBlue4 | |
48 | hi Cursor guibg=Lavender guifg=Black | |
49 | hi lCursor guibg=Lavender guifg=Black | |
50 | hi Directory guifg=LightGreen guibg=bg | |
51 | hi LineNr guifg=LightBlue3 guibg=bg | |
52 | hi MoreMsg gui=NONE guifg=SeaGreen guibg=bg | |
53 | hi NonText gui=NONE guifg=Cyan4 guibg=Black | |
54 | hi Question gui=NONE guifg=LimeGreen guibg=bg | |
55 | hi Search gui=NONE guifg=SkyBlue4 guibg=Bisque | |
56 | hi SpecialKey guifg=Cyan guibg=bg | |
57 | hi Title gui=NONE guifg=Yellow2 guibg=bg | |
58 | hi WarningMsg guifg=Tomato3 guibg=Black | |
59 | hi WildMenu gui=NONE guifg=Black guibg=SkyBlue4 | |
60 | hi Folded guifg=#f4aba2 guibg=bg | |
61 | hi FoldColumn guifg=DarkBlue guibg=Grey | |
62 | hi DiffAdd gui=NONE guifg=Blue guibg=LightCyan | |
63 | hi DiffChange gui=NONE guifg=white guibg=LightCyan4 | |
64 | hi DiffDelete gui=None guifg=LightBlue guibg=LightCyan | |
65 | ||
66 | hi Constant gui=NONE guifg=MistyRose3 guibg=bg | |
67 | hi String gui=NONE guifg=LightBlue3 guibg=bg | |
68 | hi Special gui=NONE guifg=GoldenRod guibg=bg | |
69 | hi Statement gui=NONE guifg=khaki guibg=bg | |
70 | hi Operator gui=NONE guifg=#8673e8 guibg=bg | |
71 | hi Ignore gui=NONE guifg=bg guibg=bg | |
72 | hi ToDo gui=NONE guifg=DodgerBlue guibg=bg | |
73 | hi Error gui=NONE guifg=Red guibg=Linen | |
74 | hi Comment gui=NONE guifg=SlateGrey guibg=bg | |
75 | hi Comment gui=NONE guifg=#62c600 guibg=bg | |
76 | hi Identifier gui=bold guifg=LightBlue4 guibg=bg | |
77 | hi PreProc gui=NONE guifg=#ffa0a0 guibg=bg | |
78 | hi Type gui=NONE guifg=NavajoWhite guibg=bg | |
79 | hi Underlined gui=underline guifg=fg guibg=bg | |
80 | ||
81 | " vim: sw=2 |