citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

matrix.vim (3192B)


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