I don't seem to have this problem, so I suppose it is to do with your
colour scheme. Vim help recommends not mixing attributes with colouring,
but it wouldn't surprise me if some colour schemes did so. Or perhaps
Vim's defaults have some bold in them and they aren't cleared.
> So the question is how can I disable bold fonts in vim?
The simplest thing I can think of is basically what you're already
doing: change the colour scheme files. Better, though, is to make a copy
of $VIMRUNTIME/colors/whateveryouuse.vim in ~/.vim/colors.
You can then search it for cterm=\S*bold and remove bold from the list,
or change to =NONE if it's the only thing in the list. If that doesn't
work, figure out which colours still have the bold and add cterm=NONE to
those :hi commands in the scheme to ensure the Vim default is overridden.
> For now, I have to manually
> change the colorscheme files by using Dark colors instead of light (?)
> colors (e.g. use DarkMagenta instead of Magenta).
Did this actually stop it being bold, or just make it nicer to look at
because the colour was darker?
Ben.
What happens if, before setting ":syntax on", you set t_Co to 8 and t_md
to empty?
if !has('gui_running')
set t_Co=8 t_md=
endif
Best regards,
Tony.
--
Colvard's Logical Premises:
All probabilities are 50%. Either a thing will happen or it
won't.
Colvard's Unconscionable Commentary:
This is especially true when dealing with someone you're
attracted to.
Grelb's Commentary
Likelihoods, however, are 90% against you.