atstake atstake wrote:
On 2/17/07, A.J.Mechelynck <[EMAIL PROTECTED]> wrote:
Once you find a colorscheme which pleases you (or if you write your
own), you
can place the appropriate line in your vimrc.
Thanks.
I tried torte, slate, shine, ron, peachpuff, pablo, murphy, morning,
koehler, evening, elflord, desert, delek, default, blue, darkblue. I
really liked delek but it's not really strong enough. Do you have any
suggestions of something similar to delek?
No I don't. I use gvim much more than Console Vim, and I use a small homemade
colourscheme which I call almost-default because it is not very different from
the default. It works reasonably well in konsole with pale-yellow background
but I won't claim it's perfect. I'm sending it as attachment: you may use it
as a source of inspiration to create your own. Or you may use any other one
and modify it to your taste. If you modify a "standard" colourscheme, copy it
first under another name, into ~/.vim/colors [for Unix] or
$HOME/vimfiles/colors [for Windows], creating any not-yet-existing needed
directories in the process. Example for Unix/Linux:
:!mkdir -pv $HOME/.vim/colors
:e $VIMRUNTIME/colors/delek.vim
:saveas ~/.vim/colors/atstake.vim
then go on editing the colorscheme under its new name. To test it, just use
:w
:colorscheme atstake
:syntax on
Once (and if) you get something you like, just add
colorscheme atstake
to your vimrc.
Best regards,
Tony.
--
VIRGO (Aug 23 - Sept 22)
You are the logical type and hate disorder. This nitpicking is
sickening to your friends. You are cold and unemotional and
sometimes fall asleep while making love. Virgos make good bus
drivers.
" Vim color file
" Maintainer: Tony Mechelynck <[EMAIL PROTECTED]>
" Last Change: 2006 Sep 06
" ÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷
" This is almost the default color scheme. It doesn't define the Normal
" highlighting, it uses whatever the colors used to be.
" Only the few highlight groups named below are defined; the rest (most of
" them) are left at their compiled-in default settings.
" Set 'background' back to the default. The value can't always be estimated
" and is then guessed.
hi clear Normal
set bg&
" Remove all existing highlighting and set the defaults.
hi clear
" Load the syntax highlighting defaults, if it's enabled.
if exists("syntax_on")
syntax reset
endif
" Set our own highlighting settings
hi SpecialKey guibg=NONE
hi PyjamaEven ctermbg=grey gui=NONE guibg=#FFD8FF
" white on red is not always distinct in the GUI: use black on red then
hi Error guibg=red
guifg=black
hi clear ErrorMsg
hi link ErrorMsg Error
" show cursor line/column (if enabled) in very light grey in the GUI,
" underlined in the console
if has("gui_running")
hi clear CursorLine
hi CursorLine guibg=#F4F4F4
endif
hi clear CursorColumn
hi link CursorColumn CursorLine
" do not make help bars and stars invisible
hi clear helpBar
hi link helpBar helpHyperTextJump
hi clear helpStar
hi link helpStar helpHyperTextEntry
" the following were forgotten in the syntax/vim.vim (and ended up cleared)
hi clear vimVar
hi link vimVar Identifier
hi clear vimGroupName
hi link vimGroupName vimGroup
hi clear vimHiClear
hi link vimHiClear vimHighlight
" display the status line of the active window in a distinctive color:
" bold black on bright red in the GUI, white on green in the console (where the
bg is
" never bright, and dark red is sometimes an ugly sort of reddish brown).
hi StatusLine gui=NONE,bold guibg=red
guifg=black
\ cterm=NONE,bold ctermbg=green
ctermfg=white
" make the status line bold-reverse (but B&W) for inactive windows
hi StatusLineNC gui=reverse,bold
\ cterm=reverse,bold
" define colors for the tab line:
" file name of unselected tab
hi TabLine gui=NONE guibg=#EEEEEE
guifg=black
\ cterm=NONE,bold ctermbg=lightgrey
ctermfg=white
" file name of selected tab (GUI default is bold black on white)
hi TabLineSel cterm=NONE,bold ctermbg=green
ctermfg=white
" fillup and tab-delete "X" at right
hi TabLineFill gui=NONE,bold guibg=#CCCCCC
guifg=#990000
\ cterm=NONE ctermbg=lightgrey
ctermfg=red
" tab and file number 1:2/3 (meaning "tab 1: window 2 of 3) for selected tab
hi User1 gui=bold guibg=white
guifg=magenta
\ ctermbg=green
ctermfg=black
" tab and file number 1:2/3 for unselected tab
hi User2 guibg=#EEEEEE
guifg=magenta
\ ctermbg=lightgrey
ctermfg=black
" additional override for manpages à la Dr. Chip
hi manSubSectionStart guibg=white
guifg=yellow
\ ctermbg=black
ctermfg=darkblue
" remember the current colorscheme name
let colors_name = "almost-default"
" vim: sw=2