Dear and Happy mutt users,

I started playing with colors in Vim when editing mutt messages.
However, I get an ugly block cursor (orange or yellow depending on
the terminal) on each empty line.

I use Mutt 1.4i and Vim 6.1 on RedHat 7.2 (compiled from SRPMs).
Mutt runs in gnome-terminal.

I attached my vimrc for reference, and you can view what I'm talking
about: http://cern.ch/simer/mutt_vim.png

Can anyone help?

Erik
" CVS: $Id: vimrc,v 1.3 2002/08/23 08:35:32 es Exp $
"
" Common VIM initialization file
" Used with VIM 6
"
" INSTALLATION:
"
" Copy the following lines to your ~/.vimrc
"
" if filereadable(expand("~/config/vimrc"))
"         source ~/config/vimrc 
" endif

" Syntax highlighting
"if has("syntax") && &t_Co > 2
"    syntax on
"endif

syntax off

" Indentation
if has("autocmd")
 filetype plugin indent on
endif

set ai

" Tabs
set tabstop=4
set softtabstop=4
set expandtab
set noinsertmode

" Show whitespaces
set   list
" Show trailing spaces
set   listchars=tab:»·,trail:·

" Disable compatibility with old vi
set nocompatible

" Custom settings for mutt
au BufNewFile,BufRead /tmp/mutt* set et tw=68 comments=nb:>
au BufNewFile,BufRead /home/es/.letter set et tw=68 comments=nb:>

Reply via email to