aboutsummaryrefslogtreecommitdiff
path: root/.vim/colors/c.vim
diff options
context:
space:
mode:
authorRyan Kavanagh <ryanakca@kubuntu.org>2011-08-14 17:16:55 -0400
committerRyan Kavanagh <ryanakca@kubuntu.org>2011-08-25 07:42:57 -0400
commit1c019761dfaf6be82de9284fa5e2b9dbfbdec27d (patch)
tree7ed6bd2f437d3a334bd7a81f62e6dfa63689272b /.vim/colors/c.vim
Initial import
Diffstat (limited to '.vim/colors/c.vim')
-rw-r--r--.vim/colors/c.vim32
1 files changed, 32 insertions, 0 deletions
diff --git a/.vim/colors/c.vim b/.vim/colors/c.vim
new file mode 100644
index 0000000..6109c22
--- /dev/null
+++ b/.vim/colors/c.vim
@@ -0,0 +1,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