citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

spring.vim (2428B)


      1 
      2 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
      3 
      4 " File Name:      spring.vim
      5 " Abstract:       A color sheme file (only for GVIM), which make the VIM 
      6 "                 bright with colors. It looks like the flowers are in 
      7 "                 blossom in Spring.
      8 " Author:         CHE Wenlong <chewenlong AT buaa.edu.cn>
      9 " Version:        1.0
     10 " Last Change:    September 16, 2008
     11 
     12 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
     13 
     14 if !has("gui_running")
     15     runtime! colors/default.vim
     16     finish
     17 endif
     18 
     19 set background=light
     20 
     21 hi clear
     22 
     23 " Version control
     24 if version > 580
     25     hi clear
     26     if exists("syntax_on")
     27         syntax reset
     28     endif
     29 endif
     30 
     31 let colors_name = "spring"
     32 
     33 " Common
     34 hi Normal           guifg=#000000   guibg=#cce8cf   gui=NONE
     35 hi Visual           guibg=#ccffff                   gui=NONE
     36 hi Cursor           guifg=#f5deb3   guibg=#2f4f4f   gui=NONE
     37 hi Cursorline       guibg=#ccffff
     38 hi lCursor          guifg=#000000   guibg=#ffffff   gui=NONE
     39 hi LineNr           guifg=#1060a0   guibg=#e0e0e0   gui=NONE
     40 hi Title            guifg=#202020   guibg=NONE      gui=bold
     41 hi Underlined       guifg=#202020   guibg=NONE      gui=underline
     42 
     43 " Split
     44 hi StatusLine       guifg=#f5deb3   guibg=#2f4f4f   gui=bold
     45 hi StatusLineNC     guifg=#f5deb3   guibg=#2f4f4f   gui=NONE
     46 hi VertSplit        guifg=#2f4f4f   guibg=#2f4f4f   gui=NONE
     47 
     48 " Folder
     49 hi Folded           guifg=#006699   guibg=#e0e0e0   gui=NONE
     50 
     51 " Syntax
     52 hi Type             guifg=#009933   guibg=NONE      gui=bold
     53 hi Define           guifg=#1060a0   guibg=NONE      gui=bold
     54 hi Comment          guifg=#1e90ff   guibg=NONE      gui=NONE
     55 hi Constant         guifg=#a07040   guibg=NONE      gui=NONE
     56 hi String           guifg=#a07040   guibg=NONE      gui=NONE
     57 hi Number           guifg=#cd0000   guibg=NONE      gui=NONE
     58 hi Statement        guifg=#fc548f   guibg=NONE      gui=bold
     59 
     60 " Others
     61 hi PreProc          guifg=#1060a0    guibg=NONE     gui=NONE
     62 hi Error            guifg=#ff0000    guibg=#ffffff  gui=bold,underline
     63 hi Todo             guifg=#a0b0c0    guibg=NONE     gui=bold,underline
     64 hi Special          guifg=#8B038D    guibg=NONE     gui=NONE
     65 hi SpecialKey       guifg=#d8a080    guibg=#e8e8e8  gui=NONE
     66 
     67 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
     68 
     69 " vim:tabstop=4
     70 
     71 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""