redstring.vim 1.2 KB

123456789101112131415161718192021222324252627
  1. " Vim color file
  2. " Maintainer: Connor Berry <connorberry@yahoo.com>
  3. " Last Change: 2006/05/25
  4. " Version: 1.0
  5. set background=dark
  6. highlight clear
  7. if exists("syntax on")
  8. syntax reset
  9. endif
  10. let g:colors_name = "redstring"
  11. highlight Normal term=none ctermfg=grey cterm=none ctermbg=black guifg=white gui=none guibg=black
  12. highlight Comment term=none ctermfg=DarkGrey guifg=DarkGrey
  13. highlight Constant term=none ctermfg=red cterm=none guifg=red gui=none
  14. highlight Special term=none ctermfg=red cterm=bold guifg=red gui=bold
  15. highlight Identifier term=none ctermfg=lightgreen cterm=none guifg=lightgreen gui=none
  16. highlight Statement term=bold ctermfg=cyan cterm=bold guifg=cyan gui=bold
  17. highlight Operator term=bold ctermfg=cyan cterm=bold guifg=cyan gui=bold
  18. highlight PreProc term=bold ctermfg=lightgreen cterm=none guifg=green gui=none
  19. highlight Type term=bold ctermfg=lightgreen cterm=none guifg=lightgreen gui=none
  20. highlight String term=none ctermfg=red cterm=none guifg=red gui=none
  21. highlight Number term=none ctermfg=red cterm=none guifg=red gui=none
  22. " vim:ts=2:sw=2:et