VIM has some 150+ color syntax highlighting schemes-- attached is a fairly basic .vimrc file with syntax higlighting enabled... Fairlight [[EMAIL PROTECTED]] wrote: > Well, the 7th day since I hooked up with mutt, and I tackled most of the > manual tonight and set up a lot of things I hadn't yet. > > One of those was colours. I finally have a cool colour scheme that works > well. There's just one small part that bothers me: when I go to > reply/forward, vi (actually vim) doesn't support those colour arrangements. > > Anyone know how to get vim to behave like mutt, color-wise? > > mark-> > -- > Fairlight-> ||| [EMAIL PROTECTED] | Fairlight Consulting > __/\__ ||| "I'm talking for free... | http://www.fairlite.com > <__<>__> ||| It's a New Religion..." | [EMAIL PROTECTED] > \/ ||| PGP Public Key available via finger @iglou, or Key servers -- Soren
" Vim " " To use it, copy it to " for Unix and OS/2: ~/.vimrc " for Amiga: s:.vimrc " for MS-DOS and Win32: $VIM\_vimrc " if($TERM != "linux") " set ttytype=linux " endif set dictionary=/usr/dict/words set ai " set formatoptions=tcq2 " set tw=79 set ts=2 set nobackup set noautowrite set bs=2 set ruler set nocompatible set laststatus=2 set magic set digraph " set noesckeys set helpheight=0 set hidden set highlight=8r,db,es,hs,mb,Mr,nu,rs,sr,tb,vr,ws set noicon set noignorecase set noinsertmode set joinspaces set nomodeline set nonumber set report=0 set shell=bash set shortmess=at set showcmd set showmatch set showmode set suffixes=.bak.swp set tabstop=2 set shiftwidth=2 set title set ttyfast set nottybuiltin set whichwrap=<,> set wildchar=<TAB> set wrapmargin=1 set nowritebackup map :W :w noremap <C-^> <C-^>`" " emacs definitions cnoremap <C-A> <Home> cnoremap <C-F> <Right> cnoremap <C-B> <Left> cnoremap <ESC>b <S-Left> cnoremap <ESC>f <S-Right> cnoremap <ESC><C-H> <C-W> " use Q for formatting map Q gq " Buffer commands (split,move,delete) - map <F4> :split<C-M> map <F5> :bp<C-M> map <F6> :bn<C-M> map <F12> :bd<C-M> syntax on " if exists("has_syntax") " else " source $VIM/syntax/perl.vim " endif " EOF