1" Vim color file 2" Maintainer: Bram Moolenaar <[email protected]> 3" Last Change: 2001 Jul 23 4 5" This is the default color scheme. It doesn't define the Normal 6" highlighting, it uses whatever the colors used to be. 7 8" Set 'background' back to the default. The value can't always be estimated 9" and is then guessed. 10hi clear Normal 11set bg& 12 13" Remove all existing highlighting and set the defaults. 14hi clear 15 16" Load the syntax highlighting defaults, if it's enabled. 17if exists("syntax_on") 18 syntax reset 19endif 20 21let colors_name = "default" 22 23" vim: sw=2 24