File: simpleandfriendly.vim

package info (click to toggle)
vim-scripts 20210124.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,384 kB
  • sloc: perl: 420; xml: 95; makefile: 25
file content (65 lines) | stat: -rw-r--r-- 2,300 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
" Vim color file
" Maintainer:	Thomas Schmall www.oxpal.com
" Last Change:	Nov 2 2009 
" URL: http://www.vim.org/scripts/script.php?script_id=792
" Version: 1.4

" This color scheme uses a light grey background.

" Last Changes:
" *line number colors changed
" *current line highlighting


" First remove all existing highlighting.
set background=light
hi clear
if exists("syntax_on")
  syntax reset
endif

let g:colors_name = "simpleandfriendly"

"set the highlighting of the current line to true - then give it a color
"delete next line to turn off current line highlighting for this color scheme
set cul
hi cursorline gui=underline 
"guibg=grey91 
hi visual guibg=grey80 guifg=black


"Set nice colors #DC6210
"Cursor is Cyan when ":lmap" mappings are active
hi lCursor guibg=Cyan guifg=NONE
hi LineNr	 guifg=white  guibg=#acbbff

"Text below the last line is darker grey
hi NonText 	guibg=grey80
"Normal text is black background is grey
hi Normal 	guifg=black		guibg=grey89  ctermfg=Black  ctermbg=LightGrey 
hi Comment	guifg=Orange	guibg=grey94	ctermfg=DarkCyan	term=bold
"Constants are not underlined but have a slightly lighter background
hi Constant	guifg=#8080a0   guibg=grey92	gui=NONE  term=underline
hi String	  guifg=#80a0ff 	guibg=grey93	gui=NONE  term=underline	
hi Number	  guifg=#80a5ff 	guibg=grey91  gui=NONE  ctermfg=Gray  term=none
"Words like _if_ or _else_  (Grey27)
hi Statement	guifg=#4A2B99	gui=NONE  	ctermfg=Blue

hi Title    guifg=red		ctermfg=red gui=NONE term=BOLD
"color for _NONE_ for instance:
hi PreProc	term=underline	ctermfg=LightBlue	guifg=#DC6210
"color for _guifg_ for instance: (SlateBlue works here nice too)
hi Type	  	guifg=#008080 ctermfg=LightGreen gui=None term=underline	
hi Function	guifg=#61577A	term=bold 	
"in lingo the defined functions. (alt: SlateBlue)
hi Identifier	guifg=Seagreen
"hi Identifier	term=underline	cterm=bold ctermfg=Cyan	guifg=#40ffff

"hi Repeat	term=underline	ctermfg=White		guifg=white
"hi Ignore	guifg=bg	ctermfg=black
hi Error  	term=reverse  ctermbg=Red     ctermfg=White guibg=Red guifg=White
hi Todo	  	term=standout	ctermbg=Yellow  ctermfg=Black guifg=Blue guibg=Yellow
"Special Characters
hi Special 	guibg=grey90	guifg=Slateblue	gui=UNDERLINE

hi operator guifg=gray25  ctermfg=Black   term=bold   cterm=bold  gui=bold