Skip to content

vim-scripts/AfterColors.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

This is a mirror of http://www.vim.org/scripts/script.php?script_id=1641

Allows you to create an after/colors/ script for customizing any colorscheme.

-- EXAMPLE --
If you like the 'desert' colorscheme, but you really want comments to be red and functions to be blue, previously you would copy the entire colorscheme into your home directory and customize it.  With this plugin installed, you can create a small script to change just the parts you want for that colorscheme, exactly how you would for an ftplugin or syntax script:

For unix systems you would create:
  ~/.vim/after/colors/desert.vim:
    highlight Comment guifg=Red ctermfg=Red
    highlight Function guifg=Blue ctermfg=Blue

On windows you would create:
 C:\Documents and Settings\Peter\vimfiles\after\colors\desert.vim:
    highlight Comment guifg=Red ctermfg=Red
    highlight Function guifg=Blue ctermfg=Blue


-- VERSION 6 WARNING --
If your Vim is older than version 7, then the after/colors scripts will only be loaded once when Vim starts.  This will not be a problem if you choose your colorscheme in your .vimrc file, but if you change your colorscheme after vim has loaded then your after/colors scripts will be ignored.  This is not an issue in Vim 7.


In case of problems, you can email me: <toomuchphp-vim at yahoo.com>

About

Provides support for after/colors/ scripts

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors