aboutsummaryrefslogtreecommitdiff
path: root/vim/colors/spring.vim
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2023-06-11 23:21:38 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2023-06-11 23:21:38 +0200
commit252cea169185f5a57acb6913f622950bb27458f8 (patch)
tree33bc09c6a5abd5bd46faec09c10de226a9993a5c /vim/colors/spring.vim
parente19087bc292678a526a8c780bbdc58b38dcecc2c (diff)
Drop support for vim, cleanup nvim config
Diffstat (limited to 'vim/colors/spring.vim')
-rw-r--r--vim/colors/spring.vim71
1 files changed, 0 insertions, 71 deletions
diff --git a/vim/colors/spring.vim b/vim/colors/spring.vim
deleted file mode 100644
index 06d79d0..0000000
--- a/vim/colors/spring.vim
+++ /dev/null
@@ -1,71 +0,0 @@
-
-"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-" File Name: spring.vim
-" Abstract: A color sheme file (only for GVIM), which make the VIM
-" bright with colors. It looks like the flowers are in
-" blossom in Spring.
-" Author: CHE Wenlong <chewenlong AT buaa.edu.cn>
-" Version: 1.0
-" Last Change: September 16, 2008
-
-"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-if !has("gui_running")
- runtime! colors/default.vim
- finish
-endif
-
-set background=light
-
-hi clear
-
-" Version control
-if version > 580
- hi clear
- if exists("syntax_on")
- syntax reset
- endif
-endif
-
-let colors_name = "spring"
-
-" Common
-hi Normal guifg=#000000 guibg=#cce8cf gui=NONE
-hi Visual guibg=#ccffff gui=NONE
-hi Cursor guifg=#f5deb3 guibg=#2f4f4f gui=NONE
-hi Cursorline guibg=#ccffff
-hi lCursor guifg=#000000 guibg=#ffffff gui=NONE
-hi LineNr guifg=#1060a0 guibg=#e0e0e0 gui=NONE
-hi Title guifg=#202020 guibg=NONE gui=bold
-hi Underlined guifg=#202020 guibg=NONE gui=underline
-
-" Split
-hi StatusLine guifg=#f5deb3 guibg=#2f4f4f gui=bold
-hi StatusLineNC guifg=#f5deb3 guibg=#2f4f4f gui=NONE
-hi VertSplit guifg=#2f4f4f guibg=#2f4f4f gui=NONE
-
-" Folder
-hi Folded guifg=#006699 guibg=#e0e0e0 gui=NONE
-
-" Syntax
-hi Type guifg=#009933 guibg=NONE gui=bold
-hi Define guifg=#1060a0 guibg=NONE gui=bold
-hi Comment guifg=#1e90ff guibg=NONE gui=NONE
-hi Constant guifg=#a07040 guibg=NONE gui=NONE
-hi String guifg=#a07040 guibg=NONE gui=NONE
-hi Number guifg=#cd0000 guibg=NONE gui=NONE
-hi Statement guifg=#fc548f guibg=NONE gui=bold
-
-" Others
-hi PreProc guifg=#1060a0 guibg=NONE gui=NONE
-hi Error guifg=#ff0000 guibg=#ffffff gui=bold,underline
-hi Todo guifg=#a0b0c0 guibg=NONE gui=bold,underline
-hi Special guifg=#8B038D guibg=NONE gui=NONE
-hi SpecialKey guifg=#d8a080 guibg=#e8e8e8 gui=NONE
-
-"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-" vim:tabstop=4
-
-"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""