Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I often find myself wanting to change just something little in a colorscheme, but i don't want to edit the original file. I tried putting my change in '~/.vim/after/colors/blah.vim', but that doesn't work for me.


Example, I want to change the CursorLine highlight in BusyBee.vim..

~/.vim/colors/BusyBee.vim

I create the file '~/.vim/after/colors/BusyBee.vim' and add this:

hi CursorLine    guibg=#000000 ctermbg=Black cterm=none

However, i don't see the change. Of course it works if i change the line in the originial BusyBee.vim, but like i said i'd prefer not to do that.

Doing...

:colo Busy<TAB>

Shows me...

BusyBee  BusyBee
share|improve this question
Why not just copy the theme and edit the copy? – Slomojo Feb 9 '11 at 1:51
Less work when updating. The idea is to have my changes override the theme's so i can just update the theme without having to merge my changes in. – Hannes Feb 9 '11 at 16:45

4 Answers

up vote 5 down vote accepted

Have a look at AfterColors.vim, it will enable you to to use the ~/.vim/after/colors/BusyBee.vim method.

share|improve this answer
Thanks, buddy! =D – Hannes Feb 9 '11 at 16:34

You asked what I'm looking for today. I found a simpler solution than those presented here. I want transparent background instead of the black background from the theme, while simply overriding the color after the colorscheme statement in .vimrc doesn't work and installing a plugin just for that is weird. Here is what I did:

autocmd ColorScheme * highlight Normal ctermbg=None
autocmd ColorScheme * highlight NonText ctermbg=None

Why does it work? I guess that vim does something besides just read your colorscheme statement and load the statement and then read your highlight statement and change the color. Anyway it seems like vim only change the color scheme after reading the config files. So I provide a hook, that will change the colors every time the color scheme is changed. A nice side effect is, this works even if you switch your color scheme (you could do an if block if you want to).

share|improve this answer
Hi, I'm using the jellybeans theme and want to have a pure black backgruond, but it's gray actually. I've added the lines you proposed to the .vimrc, but nothing happens... what do I do? – tomislav-maric Dec 18 '12 at 15:50
1  
Do you have a transparent terminal? The black background is transparent so you wouldn't get real black if your terminal is transparent. Try :highlight Normal ctermbg=blue during a Vim session and see if it sets your background to blue. If it does, I think you'll have to change your terminal settings. Or maybe there is something that I don't know of. – phunehehe Dec 20 '12 at 3:13
I've tried it and only the first and the last line are set to blue, not the whole window. – tomislav-maric Dec 20 '12 at 8:11

I don't have 'colorscheme BusyBee' in my .vimrc. I like to switch colorscheme now and then, so i want to "fix" the actual theme.

I came up with this solution, not the prettiest, but whatever.

function! FixColorscheme() " {{{
    echo "fixing colorscheme"
    if has("gui_running")
        if (g:colors_name =~ "busybee")
            hi Folded        guibg=#001336 guifg=#003DAD gui=none
            hi CursorLine    guibg=#000000 ctermbg=Black cterm=none

        elseif (g:colors_name =~ "256-jungle")
            hi CursorLine    guibg=#000000 ctermbg=Black cterm=none

        elseif (g:colors_name =~ "xoria256")
            hi Folded        guibg=#001336 guifg=#003DAD gui=none cterm=none
            "hi Folded         ctermbg=234  ctermfg=25    cterm=none
        endif
    elseif &t_Co == 256
        if (g:colors_name =~ "busybee")
            hi Folded        guibg=#001336 guifg=#003DAD gui=none
            hi CursorLine    guibg=#000000 ctermbg=Black cterm=none

        elseif (g:colors_name =~ "256-jungle")
            hi CursorLine    guibg=#000000 ctermbg=Black cterm=none

        elseif (g:colors_name =~ "xoria256")
            hi Folded         ctermbg=234  ctermfg=25    cterm=none
            hi CursorLine    cterm=none
        "else
            "hi CursorLine     ctermbg=0                  cterm=none
        endif
    endif
    endfunction
" }}}

Run it automatically when changing color scheme.

augroup mycolorschemes
    au!
    au ColorScheme * call FixColorscheme()
augroup END

And this helps to load your favorite-scheme-of-the-week on startup. (eek!! the default!)

if iSFirstRun == 1
    echo "HI"
    colo xoria256
    call FixColors()
endif

.. and this at the very top of .vimrc

"" To let us set some settings only once. {{{
    if exists("isRunning")
        let isFirstRun = 0
    else
        let isFirstRun = 1
    endif
    let isRunning = 1
" }}}

Perhaps there already is something for this 'isFirstRun'?

share|improve this answer
<sarcastic> Yeees, that looks much simpler, for a colorscheme you're using periodically :) ... Btw, if you don't want to change the original file (why?), why not just make a version 2 of it and change it in there. I really don't see why the need for all this problem making out of nothing. – ldigas Mar 14 '10 at 11:21
There was no work in doing this compared to the annoyance of "manually" adjusting schemes as you change to them, or bringing along my changes to schemes as i update them (which i would have to manually do if i overwrote it or named it something else). I'm glad for you that you are not as picky about your setup as I am.. ; ) – Hannes Mar 16 '10 at 18:24
Wow, great solution! +1 :) I eventually used a "sliced-up" version of this answer. It's based on this one so I didn't want to post a new answer for it. You can view it in my .vimrc: github.com/oryband/dotvim/blob/master/vimrc – Ory Band Mar 17 '11 at 13:05

Put

hi CursorLine    guibg=#000000 ctermbg=Black cterm=none

after your

colorscheme BusyBee

entry in your _vimrc.

share|improve this answer
2  
Doesn't work. Sorry. – Ory Band Mar 16 '11 at 16:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.