diff options
author | Max Christian Pohle | 2015-07-26 18:17:27 +0200 |
---|---|---|
committer | Max Christian Pohle | 2015-07-26 18:23:27 +0200 |
commit | 5f3ccd0dcada92e2ab06fbf6215b3f5a1ee0ac34 (patch) | |
tree | a38a72a4f7f839cf843f83100ee642e7c20b6d62 /colors | |
download | vim-5f3ccd0dcada92e2ab06fbf6215b3f5a1ee0ac34.tar.bz2 vim-5f3ccd0dcada92e2ab06fbf6215b3f5a1ee0ac34.zip |
original configuration from monochrome with custom color-scheme maxvb6
Diffstat (limited to 'colors')
-rw-r--r-- | colors/maxvb6.vim | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/colors/maxvb6.vim b/colors/maxvb6.vim new file mode 100644 index 0000000..98d149c --- /dev/null +++ b/colors/maxvb6.vim | |||
@@ -0,0 +1,138 @@ | |||
1 | " color theme for vim | ||
2 | " Maintainer: Max Christian Pohle <max@entwicklerseite.de> | ||
3 | " Last Change: 11.09.2014 | ||
4 | " Web: http://max.entwicklerseite.de | ||
5 | |||
6 | set background=dark | ||
7 | hi clear | ||
8 | if exists("syntax_on") | ||
9 | syntax reset | ||
10 | endif | ||
11 | let g:colors_name="maxvb6" | ||
12 | |||
13 | |||
14 | "set guifont=Liberation\ Mono\ Normal\ 14 | ||
15 | set guifont=Meslo\ LG\ S\ DZ\ for\ Powerline\ 14 | ||
16 | |||
17 | |||
18 | set number | ||
19 | set hls | ||
20 | |||
21 | highlight Menu gui=none cterm=none term=none guibg=white ctermbg=white guifg=black ctermfg=black | ||
22 | highlight Scrollbar gui=none cterm=none term=none guibg=white ctermbg=white guifg=black ctermfg=black | ||
23 | highlight Tooltip gui=none cterm=none term=none guibg=yellow ctermbg=yellow guifg=black ctermfg=black | ||
24 | |||
25 | highlight Normal gui=none cterm=none term=none guibg=white ctermbg=white guifg=black ctermfg=black | ||
26 | highlight! link NonText Normal | ||
27 | |||
28 | highlight Statement gui=bold cterm=bold term=bold guibg=white ctermbg=white guifg=#0000ff ctermfg=21 | ||
29 | highlight! link Boolean Statement | ||
30 | highlight! link Identifier Statement | ||
31 | |||
32 | highlight Type gui=bold cterm=bold term=bold guibg=white ctermbg=white guifg=DarkBlue ctermfg=darkblue | ||
33 | |||
34 | highlight Constant gui=none cterm=none term=none guibg=white ctermbg=white guifg=brown ctermfg=brown | ||
35 | highlight! link String Constant | ||
36 | highlight! link Number Constant | ||
37 | |||
38 | highlight Comment gui=none cterm=none term=none guibg=white ctermbg=white guifg=DarkGreen ctermfg=DarkGreen | ||
39 | highlight! link PreProc Comment | ||
40 | |||
41 | highlight StatusLine gui=bold cterm=bold term=bold guibg=lightgray ctermbg=lightgray guifg=darkgray ctermfg=darkgrey | ||
42 | highlight! link StatusLineNC StatusLine | ||
43 | |||
44 | highlight LineNr gui=none cterm=none term=none guibg=lightgray ctermbg=lightgray guifg=black ctermfg=black | ||
45 | highlight CursorLine gui=none cterm=none term=none guibg=lightgray ctermbg=lightgray | ||
46 | " highlight! link CursorLine LineNr | ||
47 | " highlight! link CursorColumn LineNr | ||
48 | " highlight! link ColorColumn LineNr | ||
49 | |||
50 | " Cursor the character under the cursor | ||
51 | highlight Cursor gui=inverse cterm=inverse term=inverse guibg=lightgray ctermbg=lightgray guifg=black ctermfg=black | ||
52 | highlight iCursor gui=underline cterm=underline term=underline | ||
53 | highlight! link CursorLineNr Cursor | ||
54 | highlight! link CursorIM Cursor | ||
55 | highlight! link Visual Cursor | ||
56 | highlight! link VirualNOS Cursor | ||
57 | " highlight! link MatchParen LineNr | ||
58 | highlight MatchParen guibg=yellow ctermbg=yellow | ||
59 | |||
60 | " WildMenu current match in 'wildmenu' completion | ||
61 | " Pmenu Popup menu: normal item. | ||
62 | " PmenuSel Popup menu: selected item. | ||
63 | " PmenuSbar Popup menu: scrollbar. | ||
64 | " PmenuThumb Popup menu: Thumb of the scrollbar. | ||
65 | highlight! link WildMenu Todo | ||
66 | highlight! link Popup LineNr | ||
67 | highlight! link PMenu Popup | ||
68 | highlight! link PMenuSel CursorLineNr | ||
69 | highlight! link PMenuSbar CursorLineNr | ||
70 | highlight! link PMenuThumb CursorLineNr | ||
71 | |||
72 | |||
73 | " Windows | ||
74 | highlight Title gui=bold cterm=bold term=bold guibg=lightgray ctermbg=lightgray guifg=darkgray ctermfg=darkgray | ||
75 | highlight! link VertSplit Title | ||
76 | highlight! link StatusLine Title | ||
77 | highlight! link StatusLineNC Title | ||
78 | highlight! link TabLine Title | ||
79 | highlight! link TabLineFill TabLine | ||
80 | highlight! link TabLineSel TabLine | ||
81 | highlight TabLineSel gui=inverse cterm=inverse term=inverse | ||
82 | |||
83 | highlight cParen gui=none cterm=none term=none guibg=white ctermbg=white guifg=orange ctermfg=brown | ||
84 | highlight cBlock gui=none cterm=none term=none guibg=white ctermbg=cyan guifg=orange ctermfg=brown | ||
85 | highlight vimParenSep gui=none cterm=none term=none guibg=white ctermbg=white guifg=orange ctermfg=brown | ||
86 | |||
87 | highlight Special gui=bold cterm=bold term=bold guibg=white ctermbg=white guifg=black ctermfg=178 | ||
88 | highlight! link SpecialKey Special | ||
89 | |||
90 | highlight Todo gui=none cterm=none term=none guibg=yellow ctermbg=yellow guifg=black ctermfg=black | ||
91 | highlight! link ModeMsg Todo | ||
92 | highlight! link MoreMsg Todo | ||
93 | highlight! link ErrorMsg Todo | ||
94 | highlight! link Conceal Todo | ||
95 | highlight! link Directory Todo | ||
96 | |||
97 | highlight Question gui=bold cterm=bold term=bold guibg=white ctermbg=white guifg=black ctermfg=black | ||
98 | highlight! link WarningMsg Question | ||
99 | |||
100 | highlight SpellBad gui=underline cterm=underline term=underline | ||
101 | highlight! link SpellCap SpellBad | ||
102 | highlight! link SpellLocal Todo | ||
103 | highlight! link SpellRare Todo | ||
104 | " *hl-Conceal* | ||
105 | " *hl-DiffAdd* | ||
106 | " DiffAdd diff mode: Added line |diff.txt| | ||
107 | " *hl-DiffChange* | ||
108 | " DiffChange diff mode: Changed line |diff.txt| | ||
109 | " *hl-DiffDelete* | ||
110 | " DiffDelete diff mode: Deleted line |diff.txt| | ||
111 | " *hl-DiffText* | ||
112 | " DiffText diff mode: Changed text within a changed line |diff.txt| | ||
113 | " *hl-ErrorMsg* | ||
114 | " Folded line used for closed folds | ||
115 | " *hl-FoldColumn* | ||
116 | " FoldColumn 'foldcolumn' | ||
117 | " *hl-SignColumn* | ||
118 | " SignColumn column where |signs| are displayed | ||
119 | " *hl-IncSearch* | ||
120 | " IncSearch 'incsearch' highlighting; also used for the text replaced with | ||
121 | " ":s///c" | ||
122 | " *hl-LineNr* | ||
123 | " MatchParen The character under the cursor or just before it, if it | ||
124 | " is a paired bracket, and its match. |pi_paren.txt| | ||
125 | " | ||
126 | " *hl-ModeMsg* | ||
127 | " *hl-NonText* | ||
128 | " *hl-Search* | ||
129 | " Search Last search pattern highlighting (see 'hlsearch'). | ||
130 | " Also used for highlighting the current line in the quickfix | ||
131 | " window and similar items that need to stand out. | ||
132 | " *hl-SpecialKey* | ||
133 | " to show unprintable characters in the text, 'listchars'. | ||
134 | " Generally: text that is displayed differently from what it | ||
135 | " really is. | ||
136 | " *hl-SpellBad* | ||
137 | |||
138 | |||