default.vim 548 B

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