# Controls display of color
color-style=force-ansi-16color
# Choose: black,blue,green,cyan,red,magenta,yellow,or white.
normal-foreground-color=white
normal-background-color=black
reverse-foreground-color=black
reverse-background-color=white
title-foreground-color=black
title-background-color=color010
status-foreground-color=blue
status-background-color=black
keylabel-foreground-color=black
keylabel-background-color=color010
keyname-foreground-color=color010
keyname-background-color=black
selectable-item-foreground-color=blue
selectable-item-background-color=black
quote1-foreground-color=cyan
quote1-background-color=black
quote2-foreground-color=color008
quote2-background-color=black
quote3-foreground-color=magenta
quote3-background-color=black
prompt-foreground-color=color009
prompt-background-color=black
index-to-me-foreground-color=yellow
index-to-me-background-color=black
index-important-foreground-color=color009
index-important-background-color=black
index-deleted-foreground-color=color008
index-deleted-background-color=black
index-answered-foreground-color=green
index-answered-background-color=black
index-new-foreground-color=magenta
index-new-background-color=black
index-recent-foreground-color=cyan
index-recent-background-color=black
index-unseen-foreground-color=color012
index-unseen-background-color=black
# When viewing messages, these are the header colors
viewer-hdr-colors=/HDR=Subject/FG=yellow/BG=black,
/HDR=From/FG=color012/BG=black
And see the result :
[Note that part of the colors seen here are due to Pine's Index Colors (keystrokes - MSRI)]
and
If you use vi(m) as external editor for Pine, then you will want to have
the following in your vimrc. What I do is put these in a separate .vimrc,
like .vimrc_for_pine and invoke vi to use this one, when invoked from pine.
For this, have the setting in pine config (keystrokes - MSC) as
editor = /usr/bin/vim -u /home/USER/.vimrcforpine
The ".vimrc_for_pine" should look like
set tabstop=4
set ai
set et
set tw=60
set expandtab
: e!pell %
syntax on
colorscheme kesarblack.pine
startinsert
and your "$HOME/.vim/colors" directory (create one if it doesnt exist)
should contain the vim colorscheme file kesarblack.pine.vim
You will notice other useful settings for email editing in there too.
If you do any coding, you will want to use the following syntax colors in
your default .vimrc. Assuming you use the same terminal color settings
throughout your desktop, they would in fact be necessary.
set tabstop=4
set ai
: e!pell %
set foldmethod=indent
set foldlevel=0
syntax on
colorscheme kesarblack
and your "$HOME/.vim/colors" directory (create one if it doesnt exist)
should contain the vim colorscheme file kesarblack.vim
With this, this is what you will see :