Greetings,
Im trying to create an mcedit similiar colorscheme. The reason for this
is simply that Im so accustomed with mcedit that I want it inside vim
also.
Im having some problems which I cannot quite resolve.
Firstly I add highlight to C items : (, ), {, }, ->, * .....
This works well, however if I add another highlighting (want different colors
for "(",")"),
then then both highlights stop working.
I also want to change the colors of the line numbers but
highlight numbers doesnt do the trick.
Best wishes
Kristoffer
My colorscheme:
" Vim color file
" Maintainer: Yegappan Lakshmanan
" Last Change: 2001 Sep 9
" Color settings similar to that used in Borland IDE's.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="borland"
hi Normal term=NONE cterm=NONE ctermfg=Gray ctermbg=DarkBlue
hi Normal gui=NONE guifg=Gray guibg=DarkBlue
hi NonText term=NONE cterm=NONE ctermfg=White ctermbg=DarkBlue
hi NonText gui=NONE guifg=White guibg=DarkBlue
hi Statement term=NONE cterm=NONE ctermfg=Yellow ctermbg=DarkBlue
hi Statement gui=NONE guifg=Yellow guibg=DarkBlue
hi Special term=NONE cterm=NONE ctermfg=DarkRed ctermbg=DarkBlue
hi Special gui=NONE guifg=DarkRed guibg=DarkBlue
hi Constant term=NONE cterm=NONE ctermfg=Gray ctermbg=DarkBlue
hi Constant gui=NONE guifg=Gray guibg=DarkBlue
hi Comment term=NONE cterm=NONE ctermfg=DarkYellow ctermbg=DarkBlue
hi Comment gui=NONE guifg=DarkYellow guibg=DarkBlue
hi Preproc term=NONE cterm=NONE ctermfg=LightRed ctermbg=DarkBlue
hi Preproc gui=NONE guifg=LightRed guibg=DarkBlue
hi Type term=NONE cterm=NONE ctermfg=Yellow ctermbg=DarkBlue
hi Type gui=NONE guifg=Yellow guibg=DarkBlue
hi Identifier term=NONE cterm=NONE ctermfg=White ctermbg=DarkBlue
hi Identifier gui=NONE guifg=White guibg=DarkBlue
hi StatusLine term=bold cterm=bold ctermfg=Black ctermbg=White
hi StatusLine gui=bold guifg=Black guibg=White
hi StatusLineNC term=NONE cterm=NONE ctermfg=Black ctermbg=White
hi StatusLineNC gui=NONE guifg=Black guibg=White
hi Visual term=NONE cterm=NONE ctermfg=Black ctermbg=DarkCyan
hi Visual gui=NONE guifg=Black guibg=DarkCyan
hi Search term=NONE cterm=NONE ctermbg=Gray
hi Search gui=NONE guibg=Gray
hi VertSplit term=NONE cterm=NONE ctermfg=Black ctermbg=White
hi VertSplit gui=NONE guifg=Black guibg=White
hi Directory term=NONE cterm=NONE ctermfg=Green ctermbg=DarkBlue
hi Directory gui=NONE guifg=Green guibg=DarkBlue
hi WarningMsg term=standout cterm=NONE ctermfg=Red ctermbg=DarkBlue
hi WarningMsg gui=standout guifg=Red guibg=DarkBlue
hi Error term=NONE cterm=NONE ctermfg=White ctermbg=Red
hi Error gui=NONE guifg=White guibg=Red
hi Cursor ctermfg=Black ctermbg=Yellow
hi Cursor guifg=Black guibg=Yellow
hi String term=NONE cterm=NONE ctermfg=DarkGreen ctermbg=DarkBlue
hi String gui=NONE guifg=DarkGreen guibg=DarkBlue
" matches * = - < > | ! & + ;
hi bla term=NONE cterm=NONE ctermfg=Yellow ctermbg=DarkBlue
hi bla gui=None guifg=Yellow guibg=DarkBlue
match bla "*\|=\|-\|<\|>\|{\|}\|!\|&\|+\|;\|,\|0x"
--
Kristoffer Ericson <[email protected]>
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---