mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-01-27 10:47:13 +08:00
Former-commit-id: 46c2bf7d26
Former-commit-id: ec0b4e689f3f8e97d837848929a1a6a9e45f779b
Former-commit-id: 19f055447f5fd666a270a51cf98b05d70716e826
23 lines
548 B
VimL
23 lines
548 B
VimL
" Vim color file
|
|
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
" Last Change: 2001 Jul 23
|
|
|
|
" This is the default color scheme. It doesn't define the Normal
|
|
" highlighting, it uses whatever the colors used to be.
|
|
|
|
" 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
|
|
|
|
let colors_name = "default"
|
|
|
|
" vim: sw=2
|