File: c.vim

package info (click to toggle)
vim-scripts 6-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,804 kB
  • ctags: 1,669
  • sloc: perl: 99; makefile: 27
file content (32 lines) | stat: -rw-r--r-- 878 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
" Vim Syntax Highlighting File
" 
" Language: C
"
" Extra: This is to copy the vi clone elvis on its
"        syntax highlighting.
"
" Maintainer: Dean Jones<dean@cleancode.org>
"
" Comment: This works well with the default c.vim
"          that comes with vim6.x.  It basically 
"          overrides the very bright colors it uses
"          and uses simple white for highlighting 
"          key words and types in the C language.
"          If you're using Eterm, uncomment the 
"          Normal line specified below.

hi clear

" Eterm users, uncomment the line below
" hi Normal ctermfg=grey

hi PreProc ctermfg=white
hi Type ctermfg=white
hi Statement ctermfg=white
hi Comment ctermfg=grey
hi Constant cterm=NONE ctermfg=NONE
hi Number cterm=NONE ctermfg=NONE
hi String cterm=NONE ctermfg=NONE
hi Special cterm=NONE ctermfg=NONE

" EOF for Dean's Elvis like highlighting