]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/colors/matrix.vim
Turn off the blur
[rbdr/dotfiles] / vim / colors / matrix.vim
CommitLineData
0d23b6e5
BB
1" vim:set ts=8 sts=2 sw=2 tw=0:
2"
3" matrix.vim - MATRIX like colorscheme.
4"
5" Maintainer: MURAOKA Taro <koron@tka.att.ne.jp>
6" Last Change: 10-Jun-2003.
7
8set background=dark
9hi clear
10if exists("syntax_on")
11 syntax reset
12endif
13let g:colors_name = 'matrix'
14
15" the character under the cursor
16hi Cursor guifg=#226622 guibg=#55ff55
17hi lCursor guifg=#226622 guibg=#55ff55
18" like Cursor, but used when in IME mode |CursorIM|
19hi CursorIM guifg=#226622 guibg=#55ff55
20" directory names (and other special names in listings)
21hi Directory guifg=#55ff55 guibg=#000000
22" diff mode: Added line |diff.txt|
23hi DiffAdd guifg=#55ff55 guibg=#226622 gui=none
24" diff mode: Changed line |diff.txt|
25hi DiffChange guifg=#55ff55 guibg=#226622 gui=none
26" diff mode: Deleted line |diff.txt|
27hi DiffDelete guifg=#113311 guibg=#113311 gui=none
28" diff mode: Changed text within a changed line |diff.txt|
29hi DiffText guifg=#55ff55 guibg=#339933 gui=bold
30" error messages on the command line
31hi ErrorMsg guifg=#55ff55 guibg=#339933
32" the column separating vertically split windows
33hi VertSplit guifg=#339933 guibg=#339933
34" line used for closed folds
35hi Folded guifg=#44cc44 guibg=#113311
36" 'foldcolumn'
37hi FoldColumn guifg=#44cc44 guibg=#226622
38" 'incsearch' highlighting; also used for the text replaced with
39hi IncSearch guifg=#226622 guibg=#55ff55 gui=none
40" line number for ":number" and ":#" commands, and when 'number'
41hi LineNr guifg=#44cc44 guibg=#000000
42" 'showmode' message (e.g., "-- INSERT --")
43hi ModeMsg guifg=#44cc44 guibg=#000000
44" |more-prompt|
45hi MoreMsg guifg=#44cc44 guibg=#000000
46" '~' and '@' at the end of the window, characters from
47hi NonText guifg=#44cc44 guibg=#113311
48" normal text
49hi Normal guifg=#44cc44 guibg=#000000
50" |hit-enter| prompt and yes/no questions
51hi Question guifg=#44cc44 guibg=#000000
52" Last search pattern highlighting (see 'hlsearch').
53hi Search guifg=#113311 guibg=#44cc44 gui=none
54" Meta and special keys listed with ":map", also for text used
55hi SpecialKey guifg=#44cc44 guibg=#000000
56" status line of current window
57hi StatusLine guifg=#55ff55 guibg=#339933 gui=none
58" status lines of not-current windows
59hi StatusLineNC guifg=#113311 guibg=#339933 gui=none
60" titles for output from ":set all", ":autocmd" etc.
61hi Title guifg=#55ff55 guibg=#113311 gui=bold
62" Visual mode selection
63hi Visual guifg=#55ff55 guibg=#339933 gui=none
64" Visual mode selection when vim is "Not Owning the Selection".
65hi VisualNOS guifg=#44cc44 guibg=#000000
66" warning messages
67hi WarningMsg guifg=#55ff55 guibg=#000000
68" current match in 'wildmenu' completion
69hi WildMenu guifg=#226622 guibg=#55ff55
70
71hi Comment guifg=#226622 guibg=#000000
72hi Constant guifg=#55ff55 guibg=#226622
73hi Special guifg=#44cc44 guibg=#226622
74hi Identifier guifg=#55ff55 guibg=#000000
75hi Statement guifg=#55ff55 guibg=#000000 gui=bold
76hi PreProc guifg=#339933 guibg=#000000
77hi Type guifg=#55ff55 guibg=#000000 gui=bold
78hi Underlined guifg=#55ff55 guibg=#000000 gui=underline
79hi Error guifg=#55ff55 guibg=#339933
80hi Todo guifg=#113311 guibg=#44cc44 gui=none