re-added original solarized authors names as well as removed comments; also apprentice theme
This commit is contained in:
parent
6245ef86ce
commit
f6d19db338
2 changed files with 278 additions and 654 deletions
265
vimpack/start/vim-org/colors/apprentice.vim
Normal file
265
vimpack/start/vim-org/colors/apprentice.vim
Normal file
|
@ -0,0 +1,265 @@
|
||||||
|
" 'apprentice.vim' -- Vim color scheme.
|
||||||
|
" Author: Romain Lafourcade (romainlafourcade@gmail.com)
|
||||||
|
" Description: Essentially a streamlining and conversion to xterm colors of
|
||||||
|
" 'sorcerer' by Jeet Sukumaran (jeetsukumaran@gmailcom)
|
||||||
|
" Last Change: 2017 Oct 07
|
||||||
|
|
||||||
|
" MADE-UP NAME HEX RGB XTERM ANSI
|
||||||
|
" ========================================================================
|
||||||
|
" almost black #1c1c1c rgb(28, 28, 28) 234 0
|
||||||
|
" darker grey #262626 rgb(38, 38, 38) 235 background color
|
||||||
|
" dark grey #303030 rgb(48, 48, 48) 236 8
|
||||||
|
" grey #444444 rgb(68, 68, 68) 238 8
|
||||||
|
" medium grey #585858 rgb(88, 88, 88) 240 8
|
||||||
|
" light grey #6c6c6c rgb(108, 108, 108) 242 7
|
||||||
|
" lighter grey #bcbcbc rgb(188, 188, 188) 250 foreground color
|
||||||
|
" white #ffffff rgb(255, 255, 255) 231 15
|
||||||
|
" purple #5f5f87 rgb(95, 95, 135) 60 5
|
||||||
|
" light purple #8787af rgb(135, 135, 175) 103 13
|
||||||
|
" green #5f875f rgb(95, 135, 95) 65 2
|
||||||
|
" light green #87af87 rgb(135, 175, 135) 108 10
|
||||||
|
" aqua #5f8787 rgb(95, 135, 135) 66 6
|
||||||
|
" light aqua #5fafaf rgb(95, 175, 175) 73 14
|
||||||
|
" blue #5f87af rgb(95, 135, 175) 67 4
|
||||||
|
" light blue #8fafd7 rgb(143, 175, 215) 110 12
|
||||||
|
" red #af5f5f rgb(175, 95, 95) 131 1
|
||||||
|
" orange #ff8700 rgb(255, 135, 0) 208 9
|
||||||
|
" ocre #87875f rgb(135, 135, 95) 101 3
|
||||||
|
" yellow #ffffaf rgb(255, 255, 175) 229 11
|
||||||
|
|
||||||
|
hi clear
|
||||||
|
|
||||||
|
if exists("syntax_on")
|
||||||
|
syntax reset
|
||||||
|
endif
|
||||||
|
|
||||||
|
let colors_name = "apprentice"
|
||||||
|
|
||||||
|
if ($TERM =~ '256' || &t_Co >= 256) || has("gui_running")
|
||||||
|
hi Normal ctermbg=235 ctermfg=250 guibg=#262626 guifg=#bcbcbc cterm=NONE gui=NONE
|
||||||
|
hi LineNr ctermbg=234 ctermfg=242 guibg=#1c1c1c guifg=#6c6c6c cterm=NONE gui=NONE
|
||||||
|
hi FoldColumn ctermbg=234 ctermfg=242 guibg=#1c1c1c guifg=#6c6c6c cterm=NONE gui=NONE
|
||||||
|
hi Folded ctermbg=234 ctermfg=242 guibg=#1c1c1c guifg=#6c6c6c cterm=NONE gui=NONE
|
||||||
|
hi MatchParen ctermbg=234 ctermfg=229 guibg=#1c1c1c guifg=#ffffaf cterm=NONE gui=NONE
|
||||||
|
hi signColumn ctermbg=234 ctermfg=242 guibg=#1c1c1c guifg=#6c6c6c cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
set background=dark
|
||||||
|
|
||||||
|
hi Comment ctermbg=NONE ctermfg=240 guibg=NONE guifg=#585858 cterm=NONE gui=NONE
|
||||||
|
hi Conceal ctermbg=NONE ctermfg=250 guibg=NONE guifg=#bcbcbc cterm=NONE gui=NONE
|
||||||
|
hi Constant ctermbg=NONE ctermfg=208 guibg=NONE guifg=#ff8700 cterm=NONE gui=NONE
|
||||||
|
hi Error ctermbg=NONE ctermfg=131 guibg=NONE guifg=#af5f5f cterm=reverse gui=reverse
|
||||||
|
hi Identifier ctermbg=NONE ctermfg=67 guibg=NONE guifg=#5f87af cterm=NONE gui=NONE
|
||||||
|
hi Ignore ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE cterm=NONE gui=NONE
|
||||||
|
hi PreProc ctermbg=NONE ctermfg=66 guibg=NONE guifg=#5f8787 cterm=NONE gui=NONE
|
||||||
|
hi Special ctermbg=NONE ctermfg=65 guibg=NONE guifg=#5f875f cterm=NONE gui=NONE
|
||||||
|
hi Statement ctermbg=NONE ctermfg=110 guibg=NONE guifg=#8fafd7 cterm=NONE gui=NONE
|
||||||
|
hi String ctermbg=NONE ctermfg=108 guibg=NONE guifg=#87af87 cterm=NONE gui=NONE
|
||||||
|
hi Todo ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE cterm=reverse gui=reverse
|
||||||
|
hi Type ctermbg=NONE ctermfg=103 guibg=NONE guifg=#8787af cterm=NONE gui=NONE
|
||||||
|
hi Underlined ctermbg=NONE ctermfg=66 guibg=NONE guifg=#5f8787 cterm=underline gui=underline
|
||||||
|
|
||||||
|
hi NonText ctermbg=NONE ctermfg=240 guibg=NONE guifg=#585858 cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi Pmenu ctermbg=238 ctermfg=250 guibg=#444444 guifg=#bcbcbc cterm=NONE gui=NONE
|
||||||
|
hi PmenuSbar ctermbg=240 ctermfg=NONE guibg=#585858 guifg=NONE cterm=NONE gui=NONE
|
||||||
|
hi PmenuSel ctermbg=66 ctermfg=235 guibg=#5f8787 guifg=#262626 cterm=NONE gui=NONE
|
||||||
|
hi PmenuThumb ctermbg=66 ctermfg=66 guibg=#5f8787 guifg=#5f8787 cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi ErrorMsg ctermbg=131 ctermfg=235 guibg=#af5f5f guifg=#262626 cterm=NONE gui=NONE
|
||||||
|
hi ModeMsg ctermbg=108 ctermfg=235 guibg=#87af87 guifg=#262626 cterm=NONE gui=NONE
|
||||||
|
hi MoreMsg ctermbg=NONE ctermfg=66 guibg=NONE guifg=#5f8787 cterm=NONE gui=NONE
|
||||||
|
hi Question ctermbg=NONE ctermfg=108 guibg=NONE guifg=#87af87 cterm=NONE gui=NONE
|
||||||
|
hi WarningMsg ctermbg=NONE ctermfg=131 guibg=NONE guifg=#af5f5f cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi TabLine ctermbg=238 ctermfg=101 guibg=#444444 guifg=#87875f cterm=NONE gui=NONE
|
||||||
|
hi TabLineFill ctermbg=238 ctermfg=238 guibg=#444444 guifg=#444444 cterm=NONE gui=NONE
|
||||||
|
hi TabLineSel ctermbg=101 ctermfg=235 guibg=#87875f guifg=#262626 cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi Cursor ctermbg=242 ctermfg=NONE guibg=#6c6c6c guifg=NONE cterm=NONE gui=NONE
|
||||||
|
hi CursorColumn ctermbg=236 ctermfg=NONE guibg=#303030 guifg=NONE cterm=NONE gui=NONE
|
||||||
|
hi CursorLineNr ctermbg=236 ctermfg=73 guibg=#303030 guifg=#5fafaf cterm=NONE gui=NONE
|
||||||
|
hi CursorLine ctermbg=236 ctermfg=NONE guibg=#303030 guifg=NONE cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi helpLeadBlank ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE cterm=NONE gui=NONE
|
||||||
|
hi helpNormal ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi StatusLine ctermbg=101 ctermfg=235 guibg=#87875f guifg=#262626 cterm=NONE gui=NONE
|
||||||
|
hi StatusLineNC ctermbg=238 ctermfg=101 guibg=#444444 guifg=#87875f cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi StatusLineTerm ctermbg=101 ctermfg=235 guibg=#87875f guifg=#262626 cterm=NONE gui=NONE
|
||||||
|
hi StatusLineTermNC ctermbg=238 ctermfg=101 guibg=#444444 guifg=#87875f cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi Visual ctermbg=235 ctermfg=110 guibg=#262626 guifg=#8fafd7 cterm=reverse gui=reverse
|
||||||
|
hi VisualNOS ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE cterm=underline gui=underline
|
||||||
|
|
||||||
|
hi VertSplit ctermbg=238 ctermfg=238 guibg=#444444 guifg=#444444 cterm=NONE gui=NONE
|
||||||
|
hi WildMenu ctermbg=110 ctermfg=235 guibg=#8fafd7 guifg=#262626 cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi Function ctermbg=NONE ctermfg=229 guibg=NONE guifg=#ffffaf cterm=NONE gui=NONE
|
||||||
|
hi SpecialKey ctermbg=NONE ctermfg=240 guibg=NONE guifg=#585858 cterm=NONE gui=NONE
|
||||||
|
hi Title ctermbg=NONE ctermfg=231 guibg=NONE guifg=#ffffff cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi DiffAdd ctermbg=235 ctermfg=108 guibg=#262626 guifg=#87af87 cterm=reverse gui=reverse
|
||||||
|
hi DiffChange ctermbg=235 ctermfg=103 guibg=#262626 guifg=#8787af cterm=reverse gui=reverse
|
||||||
|
hi DiffDelete ctermbg=235 ctermfg=131 guibg=#262626 guifg=#af5f5f cterm=reverse gui=reverse
|
||||||
|
hi DiffText ctermbg=235 ctermfg=208 guibg=#262626 guifg=#ff8700 cterm=reverse gui=reverse
|
||||||
|
|
||||||
|
hi IncSearch ctermbg=131 ctermfg=235 guibg=#af5f5f guifg=#262626 cterm=NONE gui=NONE
|
||||||
|
hi Search ctermbg=229 ctermfg=235 guibg=#ffffaf guifg=#262626 cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi Directory ctermbg=NONE ctermfg=73 guibg=NONE guifg=#5fafaf cterm=NONE gui=NONE
|
||||||
|
|
||||||
|
hi debugPC ctermbg=67 guibg=#5f87af
|
||||||
|
hi debugBreakpoint ctermbg=131 guibg=#af5f5f
|
||||||
|
|
||||||
|
if has("gui_running")
|
||||||
|
hi SpellBad ctermbg=NONE ctermfg=131 guibg=NONE guifg=NONE cterm=undercurl gui=undercurl guisp=#af5f5f
|
||||||
|
hi SpellCap ctermbg=NONE ctermfg=73 guibg=NONE guifg=NONE cterm=undercurl gui=undercurl guisp=#5fafaf
|
||||||
|
hi SpellLocal ctermbg=NONE ctermfg=65 guibg=NONE guifg=NONE cterm=undercurl gui=undercurl guisp=#5f875f
|
||||||
|
hi SpellRare ctermbg=NONE ctermfg=208 guibg=NONE guifg=NONE cterm=undercurl gui=undercurl guisp=#ff8700
|
||||||
|
else
|
||||||
|
hi SpellBad ctermbg=NONE ctermfg=131 guibg=NONE guifg=#af5f5f cterm=undercurl gui=undercurl guisp=NONE
|
||||||
|
hi SpellCap ctermbg=NONE ctermfg=73 guibg=NONE guifg=#5fafaf cterm=undercurl gui=undercurl guisp=NONE
|
||||||
|
hi SpellLocal ctermbg=NONE ctermfg=65 guibg=NONE guifg=#5f875f cterm=undercurl gui=undercurl guisp=NONE
|
||||||
|
hi SpellRare ctermbg=NONE ctermfg=208 guibg=NONE guifg=#ff8700 cterm=undercurl gui=undercurl guisp=NONE
|
||||||
|
endif
|
||||||
|
|
||||||
|
hi ColorColumn ctermbg=234 ctermfg=NONE guibg=#1c1c1c guifg=NONE cterm=NONE gui=NONE
|
||||||
|
elseif &t_Co == 8 || $TERM !~# '^linux' || &t_Co == 16
|
||||||
|
set t_Co=16
|
||||||
|
|
||||||
|
hi Normal ctermbg=NONE ctermfg=white cterm=NONE
|
||||||
|
|
||||||
|
set background=dark
|
||||||
|
|
||||||
|
hi Comment ctermbg=NONE ctermfg=gray cterm=NONE
|
||||||
|
hi Conceal ctermbg=NONE ctermfg=white cterm=NONE
|
||||||
|
hi Constant ctermbg=NONE ctermfg=red cterm=NONE
|
||||||
|
hi Function ctermbg=NONE ctermfg=yellow cterm=NONE
|
||||||
|
hi Identifier ctermbg=NONE ctermfg=darkblue cterm=NONE
|
||||||
|
hi PreProc ctermbg=NONE ctermfg=darkcyan cterm=NONE
|
||||||
|
hi Special ctermbg=NONE ctermfg=darkgreen cterm=NONE
|
||||||
|
hi Statement ctermbg=NONE ctermfg=blue cterm=NONE
|
||||||
|
hi String ctermbg=NONE ctermfg=green cterm=NONE
|
||||||
|
hi Todo ctermbg=NONE ctermfg=NONE cterm=reverse
|
||||||
|
hi Type ctermbg=NONE ctermfg=magenta cterm=NONE
|
||||||
|
|
||||||
|
hi Error ctermbg=NONE ctermfg=darkred cterm=reverse
|
||||||
|
hi Ignore ctermbg=NONE ctermfg=NONE cterm=NONE
|
||||||
|
hi Underlined ctermbg=NONE ctermfg=NONE cterm=reverse
|
||||||
|
|
||||||
|
hi LineNr ctermbg=black ctermfg=gray cterm=NONE
|
||||||
|
hi NonText ctermbg=NONE ctermfg=darkgray cterm=NONE
|
||||||
|
|
||||||
|
hi Pmenu ctermbg=darkgray ctermfg=white cterm=NONE
|
||||||
|
hi PmenuSbar ctermbg=gray ctermfg=NONE cterm=NONE
|
||||||
|
hi PmenuSel ctermbg=darkcyan ctermfg=black cterm=NONE
|
||||||
|
hi PmenuThumb ctermbg=darkcyan ctermfg=NONE cterm=NONE
|
||||||
|
|
||||||
|
hi ErrorMsg ctermbg=darkred ctermfg=black cterm=NONE
|
||||||
|
hi ModeMsg ctermbg=darkgreen ctermfg=black cterm=NONE
|
||||||
|
hi MoreMsg ctermbg=NONE ctermfg=darkcyan cterm=NONE
|
||||||
|
hi Question ctermbg=NONE ctermfg=green cterm=NONE
|
||||||
|
hi WarningMsg ctermbg=NONE ctermfg=darkred cterm=NONE
|
||||||
|
|
||||||
|
hi TabLine ctermbg=darkgray ctermfg=darkyellow cterm=NONE
|
||||||
|
hi TabLineFill ctermbg=darkgray ctermfg=black cterm=NONE
|
||||||
|
hi TabLineSel ctermbg=darkyellow ctermfg=black cterm=NONE
|
||||||
|
|
||||||
|
hi Cursor ctermbg=NONE ctermfg=NONE cterm=NONE
|
||||||
|
hi CursorColumn ctermbg=darkgray ctermfg=NONE cterm=NONE
|
||||||
|
hi CursorLineNr ctermbg=black ctermfg=cyan cterm=NONE
|
||||||
|
hi CursorLine ctermbg=darkgray ctermfg=NONE cterm=NONE
|
||||||
|
|
||||||
|
hi helpLeadBlank ctermbg=NONE ctermfg=NONE cterm=NONE
|
||||||
|
hi helpNormal ctermbg=NONE ctermfg=NONE cterm=NONE
|
||||||
|
|
||||||
|
hi StatusLine ctermbg=darkyellow ctermfg=black cterm=NONE
|
||||||
|
hi StatusLineNC ctermbg=darkgray ctermfg=darkyellow cterm=NONE
|
||||||
|
|
||||||
|
hi StatusLineterm ctermbg=darkyellow ctermfg=black cterm=NONE
|
||||||
|
hi StatusLinetermNC ctermbg=darkgray ctermfg=darkyellow cterm=NONE
|
||||||
|
|
||||||
|
hi Visual ctermbg=black ctermfg=blue cterm=reverse
|
||||||
|
hi VisualNOS ctermbg=black ctermfg=white cterm=reverse
|
||||||
|
|
||||||
|
hi FoldColumn ctermbg=black ctermfg=darkgray cterm=NONE
|
||||||
|
hi Folded ctermbg=black ctermfg=darkgray cterm=NONE
|
||||||
|
|
||||||
|
hi VertSplit ctermbg=darkgray ctermfg=darkgray cterm=NONE
|
||||||
|
hi WildMenu ctermbg=blue ctermfg=black cterm=NONE
|
||||||
|
|
||||||
|
hi SpecialKey ctermbg=NONE ctermfg=darkgray cterm=NONE
|
||||||
|
hi Title ctermbg=NONE ctermfg=white cterm=NONE
|
||||||
|
|
||||||
|
hi DiffAdd ctermbg=black ctermfg=green cterm=reverse
|
||||||
|
hi DiffChange ctermbg=black ctermfg=magenta cterm=reverse
|
||||||
|
hi DiffDelete ctermbg=black ctermfg=darkred cterm=reverse
|
||||||
|
hi DiffText ctermbg=black ctermfg=red cterm=reverse
|
||||||
|
|
||||||
|
hi IncSearch ctermbg=darkred ctermfg=black cterm=NONE
|
||||||
|
hi Search ctermbg=yellow ctermfg=black cterm=NONE
|
||||||
|
|
||||||
|
hi Directory ctermbg=NONE ctermfg=cyan cterm=NONE
|
||||||
|
hi MatchParen ctermbg=black ctermfg=yellow cterm=NONE
|
||||||
|
|
||||||
|
hi SpellBad ctermbg=NONE ctermfg=darkred cterm=undercurl
|
||||||
|
hi SpellCap ctermbg=NONE ctermfg=darkyellow cterm=undercurl
|
||||||
|
hi SpellLocal ctermbg=NONE ctermfg=darkgreen cterm=undercurl
|
||||||
|
hi SpellRare ctermbg=NONE ctermfg=darkmagenta cterm=undercurl
|
||||||
|
|
||||||
|
hi ColorColumn ctermbg=black ctermfg=NONE cterm=NONE
|
||||||
|
hi SignColumn ctermbg=black ctermfg=darkgray cterm=NONE
|
||||||
|
|
||||||
|
hi debugPC ctermbg=blue
|
||||||
|
hi debugBreakpoint ctermbg=red
|
||||||
|
endif
|
||||||
|
|
||||||
|
hi link Boolean Constant
|
||||||
|
hi link Character Constant
|
||||||
|
hi link Conditional Statement
|
||||||
|
hi link Debug Special
|
||||||
|
hi link Define PreProc
|
||||||
|
hi link Delimiter Special
|
||||||
|
hi link Exception Statement
|
||||||
|
hi link Float Number
|
||||||
|
hi link HelpCommand Statement
|
||||||
|
hi link HelpExample Statement
|
||||||
|
hi link Include PreProc
|
||||||
|
hi link Keyword Statement
|
||||||
|
hi link Label Statement
|
||||||
|
hi link Macro PreProc
|
||||||
|
hi link Number Constant
|
||||||
|
hi link Operator Statement
|
||||||
|
hi link PreCondit PreProc
|
||||||
|
hi link Repeat Statement
|
||||||
|
hi link SpecialChar Special
|
||||||
|
hi link SpecialComment Special
|
||||||
|
hi link StorageClass Type
|
||||||
|
hi link Structure Type
|
||||||
|
hi link Tag Special
|
||||||
|
hi link Typedef Type
|
||||||
|
|
||||||
|
hi link htmlEndTag htmlTagName
|
||||||
|
hi link htmlLink Function
|
||||||
|
hi link htmlSpecialTagName htmlTagName
|
||||||
|
hi link htmlTag htmlTagName
|
||||||
|
hi link htmlBold Normal
|
||||||
|
hi link htmlItalic Normal
|
||||||
|
hi link xmlTag Statement
|
||||||
|
hi link xmlTagName Statement
|
||||||
|
hi link xmlEndTag Statement
|
||||||
|
|
||||||
|
hi link markdownItalic Preproc
|
||||||
|
hi link asciidocQuotedEmphasized Preproc
|
||||||
|
|
||||||
|
hi link diffBDiffer WarningMsg
|
||||||
|
hi link diffCommon WarningMsg
|
||||||
|
hi link diffDiffer WarningMsg
|
||||||
|
hi link diffIdentical WarningMsg
|
||||||
|
hi link diffIsA WarningMsg
|
||||||
|
hi link diffNoEOL WarningMsg
|
||||||
|
hi link diffOnly WarningMsg
|
||||||
|
hi link diffRemoved WarningMsg
|
||||||
|
hi link diffAdded String
|
|
@ -1,10 +1,16 @@
|
||||||
" Name: Solarized 16
|
" Name: Solarized 16
|
||||||
" Description: Precision colors for machines and people
|
" Description: Precision colors for machines and people
|
||||||
" Author: Ethan Schoonover
|
" Maintainer: Von Random
|
||||||
" Author: Lifepillar
|
" License: OSI approved MIT license
|
||||||
" Maintainer: Von Random
|
" Last Updated: Mon Jul 16 2018
|
||||||
" License: OSI approved MIT license
|
|
||||||
" Last Updated: Sat Jul 14 13:01:01 2018
|
" Original authors: Ethan Schoonover http://ethanschoonover.com/solarized
|
||||||
|
" Romain Lafourcade https://github.com/romainl/flattened
|
||||||
|
" Lifepillar https://github.com/lifepillar/vim-solarized8
|
||||||
|
|
||||||
|
" Re-flattened variant of Lifepillar's solarized8, because honestly, 256 color
|
||||||
|
" approximation is entirely pointless and I do not want any options in a bloody
|
||||||
|
" color scheme. It only supports truecolor and 16 colors hence the name.
|
||||||
|
|
||||||
if !(has('termguicolors') && &termguicolors) && !has('gui_running')
|
if !(has('termguicolors') && &termguicolors) && !has('gui_running')
|
||||||
\ && (!exists('&t_Co') || &t_Co < 16)
|
\ && (!exists('&t_Co') || &t_Co < 16)
|
||||||
|
@ -610,650 +616,3 @@ if has('nvim')
|
||||||
let g:terminal_color_2='#859900'
|
let g:terminal_color_2='#859900'
|
||||||
endif
|
endif
|
||||||
finish
|
finish
|
||||||
|
|
||||||
" Background: dark
|
|
||||||
" Color: base03 #002b36 ~ 8
|
|
||||||
" Color: base02 #073642 ~ 0
|
|
||||||
" Color: base01 #586e75 ~ 10
|
|
||||||
" Color: base00 #657b83 ~ 11
|
|
||||||
" Color: base0 #839496 ~ 12
|
|
||||||
" Color: base1 #93a1a1 ~ 14
|
|
||||||
" Color: base2 #eee8d5 ~ 7
|
|
||||||
" Color: base3 #fdf6e3 ~ 15
|
|
||||||
" Color: yellow #b58900 ~ 3
|
|
||||||
" Color: orange #cb4b16 ~ 9
|
|
||||||
" Color: red #dc322f ~ 1
|
|
||||||
" Color: magenta #d33682 ~ 5
|
|
||||||
" Color: violet #6c71c4 ~ 13
|
|
||||||
" Color: blue #268bd2 ~ 4
|
|
||||||
" Color: cyan #2aa198 ~ 6
|
|
||||||
" Color: green #859900 ~ 2
|
|
||||||
" Color: back #002b36 ~ 8
|
|
||||||
" Normal base0 none
|
|
||||||
" FoldColumn fg none
|
|
||||||
" Folded fg none bold s=base03
|
|
||||||
" LineNr base01 none
|
|
||||||
" Terminal fg none
|
|
||||||
" Normal base0 back
|
|
||||||
" FoldColumn base0 base02
|
|
||||||
" Folded base0 base02 bold s=base03
|
|
||||||
" LineNr base01 base02
|
|
||||||
" Terminal fg back
|
|
||||||
" NonText orange none bold
|
|
||||||
" SpecialKey orange none reverse
|
|
||||||
" SpellBad violet base3 t=underline,reverse g=undercurl,reverse s=red
|
|
||||||
" SpellCap violet base3 t=underline,reverse g=undercurl,reverse s=red
|
|
||||||
" SpellLocal yellow base3 t=underline,reverse g=undercurl,reverse s=red
|
|
||||||
" SpellRare cyan base3 t=underline,reverse g=undercurl,reverse s=red
|
|
||||||
" Title yellow none bold
|
|
||||||
" NonText base02 none bold
|
|
||||||
" SpecialKey base02 none reverse
|
|
||||||
" SpellBad violet none t=underline g=undercurl s=violet
|
|
||||||
" SpellCap violet none t=underline g=undercurl s=violet
|
|
||||||
" SpellLocal yellow none t=underline g=undercurl s=yellow
|
|
||||||
" SpellRare cyan none t=underline g=undercurl s=cyan
|
|
||||||
" Title base01 none bold
|
|
||||||
" NonText base00 none bold
|
|
||||||
" SpecialKey base00 base02 bold
|
|
||||||
" SpellBad violet none t=underline g=undercurl s=violet
|
|
||||||
" SpellCap violet none t=underline g=undercurl s=violet
|
|
||||||
" SpellLocal yellow none t=underline g=undercurl s=yellow
|
|
||||||
" SpellRare cyan none t=underline g=undercurl s=cyan
|
|
||||||
" Title yellow none bold
|
|
||||||
" ColorColumn none base02
|
|
||||||
" Conceal blue none
|
|
||||||
" Cursor base03 base0
|
|
||||||
" Cursor base3 blue
|
|
||||||
" CursorColumn none base02
|
|
||||||
" CursorLine none base02 s=base1
|
|
||||||
" DiffAdd green none reverse
|
|
||||||
" DiffChange yellow none reverse
|
|
||||||
" DiffDelete red none reverse
|
|
||||||
" DiffText blue none reverse
|
|
||||||
" DiffAdd green none s=green
|
|
||||||
" DiffChange yellow none s=yellow
|
|
||||||
" DiffDelete red none bold
|
|
||||||
" DiffText blue none s=blue
|
|
||||||
" DiffAdd green base02 s=green
|
|
||||||
" DiffChange yellow base02 s=yellow
|
|
||||||
" DiffDelete red base02 bold
|
|
||||||
" DiffText blue base02 s=blue
|
|
||||||
" Directory blue none
|
|
||||||
" EndOfBuffer none none
|
|
||||||
" ErrorMsg red base3 reverse
|
|
||||||
" IncSearch orange none standout
|
|
||||||
" MatchParen base3 base02 bold
|
|
||||||
" ModeMsg blue none
|
|
||||||
" MoreMsg blue none
|
|
||||||
" Pmenu base0 base02 reverse
|
|
||||||
" PmenuSbar base2 base0 reverse
|
|
||||||
" PmenuSel base01 base2 reverse
|
|
||||||
" PmenuThumb base0 base03 reverse
|
|
||||||
" Question cyan none bold
|
|
||||||
" QuickFixLine -> Search
|
|
||||||
" Search yellow none reverse
|
|
||||||
" SignColumn base0 none
|
|
||||||
" StatusLine base01 base2 reverse
|
|
||||||
" StatusLineNC base01 base02 reverse
|
|
||||||
" TabLine base01 base02 reverse
|
|
||||||
" TabLineFill base01 base02 reverse
|
|
||||||
" TabLineSel base0 base3 reverse
|
|
||||||
" StatusLine base0 base02 reverse
|
|
||||||
" StatusLineNC base01 base02 reverse
|
|
||||||
" TabLine base01 base02 reverse
|
|
||||||
" TabLineFill base01 base02 reverse
|
|
||||||
" TabLineSel base0 base02 reverse
|
|
||||||
" StatusLineTerm -> StatusLine
|
|
||||||
" StatusLineTermNC -> StatusLineNC
|
|
||||||
" VertSplit base02 base01
|
|
||||||
" Visual base01 base03 reverse
|
|
||||||
" VisualNOS none base02 reverse
|
|
||||||
" WarningMsg orange none bold
|
|
||||||
" WildMenu base2 base02 reverse
|
|
||||||
" Boolean -> Constant
|
|
||||||
" Character -> Constant
|
|
||||||
" Comment base01 none g=italic
|
|
||||||
" Conditional -> Statement
|
|
||||||
" Constant cyan none
|
|
||||||
" Define -> PreProc
|
|
||||||
" Debug -> Special
|
|
||||||
" Delimiter -> Special
|
|
||||||
" Error red none bold
|
|
||||||
" Exception -> Statement
|
|
||||||
" Float -> Constant
|
|
||||||
" Function -> Identifier
|
|
||||||
" Identifier blue none
|
|
||||||
" Ignore none none
|
|
||||||
" Include -> PreProc
|
|
||||||
" Keyword -> Statement
|
|
||||||
" Label -> Statement
|
|
||||||
" Macro -> PreProc
|
|
||||||
" Number -> Constant
|
|
||||||
" Operator -> Statement
|
|
||||||
" PreCondit -> PreProc
|
|
||||||
" PreProc orange none
|
|
||||||
" Repeat -> Statement
|
|
||||||
" Special orange none
|
|
||||||
" SpecialChar -> Special
|
|
||||||
" SpecialComment -> Special
|
|
||||||
" Statement green none
|
|
||||||
" StorageClass -> Type
|
|
||||||
" String -> Constant
|
|
||||||
" Structure -> Type
|
|
||||||
" Tag -> Special
|
|
||||||
" Todo magenta none bold
|
|
||||||
" Type yellow none
|
|
||||||
" Typedef -> Type
|
|
||||||
" Underlined violet none
|
|
||||||
" lCursor -> Cursor
|
|
||||||
" CursorIM none fg
|
|
||||||
" ToolbarLine none base02
|
|
||||||
" ToolbarButton base1 base02 bold
|
|
||||||
" NormalMode base0 base3 reverse
|
|
||||||
" InsertMode cyan base3 reverse
|
|
||||||
" ReplaceMode orange base3 reverse
|
|
||||||
" VisualMode magenta base3 reverse
|
|
||||||
" CommandMode magenta base3 reverse
|
|
||||||
" vimVar -> Identifier
|
|
||||||
" vimFunc -> Function
|
|
||||||
" vimUserFunc -> Function
|
|
||||||
" helpSpecial -> Special
|
|
||||||
" vimSet -> Normal
|
|
||||||
" vimSetEqual -> Normal
|
|
||||||
" vimCommentString violet none
|
|
||||||
" vimCommand yellow none
|
|
||||||
" vimCmdSep blue none bold
|
|
||||||
" helpExample base1 none
|
|
||||||
" helpOption cyan none
|
|
||||||
" helpNote magenta none
|
|
||||||
" helpVim magenta none
|
|
||||||
" helpHyperTextJump blue none
|
|
||||||
" helpHyperTextEntry green none
|
|
||||||
" vimIsCommand base00 none
|
|
||||||
" vimSynMtchOpt yellow none
|
|
||||||
" vimSynType cyan none
|
|
||||||
" vimHiLink blue none
|
|
||||||
" vimHiGroup blue none
|
|
||||||
" vimGroup blue none bold
|
|
||||||
" diffAdded -> Statement
|
|
||||||
" diffLine -> Identifier
|
|
||||||
" gitcommitComment base01 none g=italic
|
|
||||||
" gitcommitUntracked -> gitcommitComment
|
|
||||||
" gitcommitDiscarded -> gitcommitComment
|
|
||||||
" gitcommitSelected -> gitcommitComment
|
|
||||||
" gitcommitUnmerged green none bold
|
|
||||||
" gitcommitOnBranch base01 none bold
|
|
||||||
" gitcommitBranch magenta none bold
|
|
||||||
" gitcommitNoBranch -> gitcommitBranch
|
|
||||||
" gitcommitdiscardedtype red none
|
|
||||||
" gitcommitselectedtype green none
|
|
||||||
" gitcommitHeader base01 none
|
|
||||||
" gitcommitUntrackedFile cyan none bold
|
|
||||||
" gitcommitDiscardedFile red none bold
|
|
||||||
" gitcommitSelectedFile green none bold
|
|
||||||
" gitcommitUnmergedFile yellow none bold
|
|
||||||
" gitcommitFile base0 none bold
|
|
||||||
" gitcommitDiscardedArrow -> gitcommitDiscardedFile
|
|
||||||
" gitcommitSelectedArrow -> gitcommitSelectedFile
|
|
||||||
" gitcommitUnmergedArrow -> gitcommitUnmergedFile
|
|
||||||
" htmlTag base01 none
|
|
||||||
" htmlEndTag base01 none
|
|
||||||
" htmlTagN base1 none bold
|
|
||||||
" htmlTagName blue none bold
|
|
||||||
" htmlSpecialTagName blue none g=italic
|
|
||||||
" htmlArg base00 none
|
|
||||||
" javaScript yellow none
|
|
||||||
" jsFuncCall -> Function
|
|
||||||
" perlHereDoc base1 back
|
|
||||||
" perlVarPlain yellow back
|
|
||||||
" perlStatementFileDesc cyan back
|
|
||||||
" texstatement cyan back
|
|
||||||
" texmathzonex yellow back
|
|
||||||
" texmathmatcher yellow back
|
|
||||||
" texreflabel yellow back
|
|
||||||
" rubyDefine base1 back bold
|
|
||||||
" rubySymbol -> Type
|
|
||||||
" rubyBoolean magenta back
|
|
||||||
" cPreCondit orange none
|
|
||||||
" VarId blue none
|
|
||||||
" ConId yellow none
|
|
||||||
" hsImport magenta none
|
|
||||||
" hsString base00 none
|
|
||||||
" hsStructure cyan none
|
|
||||||
" hs_hlFunctionName blue none
|
|
||||||
" hsStatement cyan none
|
|
||||||
" hsImportLabel cyan none
|
|
||||||
" hs_OpFunctionName yellow none
|
|
||||||
" hs_DeclareFunction orange none
|
|
||||||
" hsVarSym cyan none
|
|
||||||
" hsType yellow none
|
|
||||||
" hsTypedef cyan none
|
|
||||||
" hsModuleName green none
|
|
||||||
" hsImportParams -> Delimiter
|
|
||||||
" hsDelimTypeExport -> Delimiter
|
|
||||||
" hsModuleStartLabel -> hsStructure
|
|
||||||
" hsModuleWhereLabel -> hsModuleStartLabel
|
|
||||||
" hsNiceOperator cyan none
|
|
||||||
" hsniceoperator cyan none
|
|
||||||
" pandocTitleBlock blue none
|
|
||||||
" pandocTitleBlockTitle blue none bold
|
|
||||||
" pandocTitleComment blue none bold
|
|
||||||
" pandocComment base01 none g=italic
|
|
||||||
" pandocVerbatimBlock yellow none
|
|
||||||
" pandocVerbatimBlockDeep -> pandocVerbatimBlock
|
|
||||||
" pandocCodeBlock -> pandocVerbatimBlock
|
|
||||||
" pandocCodeBlockDelim -> pandocVerbatimBlock
|
|
||||||
" pandocBlockQuote blue none
|
|
||||||
" pandocBlockQuoteLeader1 blue none
|
|
||||||
" pandocBlockQuoteLeader2 cyan none
|
|
||||||
" pandocBlockQuoteLeader3 yellow none
|
|
||||||
" pandocBlockQuoteLeader4 red none
|
|
||||||
" pandocBlockQuoteLeader5 base0 none
|
|
||||||
" pandocBlockQuoteLeader6 base01 none
|
|
||||||
" pandocListMarker magenta none
|
|
||||||
" pandocListReference magenta none
|
|
||||||
" pandocDefinitionBlock violet none
|
|
||||||
" pandocDefinitionTerm violet none standout
|
|
||||||
" pandocDefinitionIndctr violet none bold
|
|
||||||
" pandocEmphasisDefinition violet none g=italic
|
|
||||||
" pandocEmphasisNestedDefinition violet none bold
|
|
||||||
" pandocStrongEmphasisDefinition violet none bold
|
|
||||||
" pandocStrongEmphasisNestedDefinition violet none bold
|
|
||||||
" pandocStrongEmphasisEmphasisDefinition violet none bold
|
|
||||||
" pandocStrikeoutDefinition violet none reverse
|
|
||||||
" pandocVerbatimInlineDefinition violet none
|
|
||||||
" pandocSuperscriptDefinition violet none
|
|
||||||
" pandocSubscriptDefinition violet none
|
|
||||||
" pandocTable blue none
|
|
||||||
" pandocTableStructure blue none
|
|
||||||
" pandocTableStructureTop -> pandocTableStructre
|
|
||||||
" pandocTableStructureEnd -> pandocTableStructre
|
|
||||||
" pandocTableZebraLight blue base03
|
|
||||||
" pandocTableZebraDark blue base02
|
|
||||||
" pandocEmphasisTable blue none g=italic
|
|
||||||
" pandocEmphasisNestedTable blue none bold
|
|
||||||
" pandocStrongEmphasisTable blue none bold
|
|
||||||
" pandocStrongEmphasisNestedTable blue none bold
|
|
||||||
" pandocStrongEmphasisEmphasisTable blue none bold
|
|
||||||
" pandocStrikeoutTable blue none reverse
|
|
||||||
" pandocVerbatimInlineTable blue none
|
|
||||||
" pandocSuperscriptTable blue none
|
|
||||||
" pandocSubscriptTable blue none
|
|
||||||
" pandocHeading orange none bold
|
|
||||||
" pandocHeadingMarker orange none bold
|
|
||||||
" pandocEmphasisHeading orange none bold
|
|
||||||
" pandocEmphasisNestedHeading orange none bold
|
|
||||||
" pandocStrongEmphasisHeading orange none bold
|
|
||||||
" pandocStrongEmphasisNestedHeading orange none bold
|
|
||||||
" pandocStrongEmphasisEmphasisHeading orange none bold
|
|
||||||
" pandocStrikeoutHeading orange none reverse
|
|
||||||
" pandocVerbatimInlineHeading orange none bold
|
|
||||||
" pandocSuperscriptHeading orange none bold
|
|
||||||
" pandocSubscriptHeading orange none bold
|
|
||||||
" pandocLinkDelim base01 none
|
|
||||||
" pandocLinkLabel blue none
|
|
||||||
" pandocLinkText blue none
|
|
||||||
" pandocLinkURL base00 none
|
|
||||||
" pandocLinkTitle base00 none
|
|
||||||
" pandocLinkTitleDelim base01 none s=base00
|
|
||||||
" pandocLinkDefinition cyan none s=base00
|
|
||||||
" pandocLinkDefinitionID blue none bold
|
|
||||||
" pandocImageCaption violet none bold
|
|
||||||
" pandocFootnoteLink green none
|
|
||||||
" pandocFootnoteDefLink green none bold
|
|
||||||
" pandocFootnoteInline green none bold
|
|
||||||
" pandocFootnote green none
|
|
||||||
" pandocCitationDelim magenta none
|
|
||||||
" pandocCitation magenta none
|
|
||||||
" pandocCitationID magenta none
|
|
||||||
" pandocCitationRef magenta none
|
|
||||||
" pandocStyleDelim base01 none
|
|
||||||
" pandocEmphasis base0 none g=italic
|
|
||||||
" pandocEmphasisNested base0 none bold
|
|
||||||
" pandocStrongEmphasis base0 none bold
|
|
||||||
" pandocStrongEmphasisNested base0 none bold
|
|
||||||
" pandocStrongEmphasisEmphasis base0 none bold
|
|
||||||
" pandocStrikeout base01 none reverse
|
|
||||||
" pandocVerbatimInline yellow none
|
|
||||||
" pandocSuperscript violet none
|
|
||||||
" pandocSubscript violet none
|
|
||||||
" pandocRule blue none bold
|
|
||||||
" pandocRuleLine blue none bold
|
|
||||||
" pandocEscapePair red none bold
|
|
||||||
" pandocCitationRef magenta none
|
|
||||||
" pandocNonBreakingSpace red none reverse
|
|
||||||
" pandocEscapedCharacter -> pandocEscapePair
|
|
||||||
" pandocLineBreak -> pandocEscapePair
|
|
||||||
" pandocMetadataDelim base01 none
|
|
||||||
" pandocMetadata blue none
|
|
||||||
" pandocMetadataKey blue none
|
|
||||||
" pandocMetadata blue none bold
|
|
||||||
" pandocMetadataTitle -> pandocMetadata
|
|
||||||
" TermCursor -> Cursor
|
|
||||||
" TermCursorNC base03 base01
|
|
||||||
" Background: light
|
|
||||||
" Color: base3 #002b36 ~ 8
|
|
||||||
" Color: base2 #073642 ~ 0
|
|
||||||
" Color: base1 #586e75 ~ 10
|
|
||||||
" Color: base0 #657b83 ~ 11
|
|
||||||
" Color: base00 #839496 ~ 12
|
|
||||||
" Color: base01 #93a1a1 ~ 14
|
|
||||||
" Color: base02 #eee8d5 ~ 7
|
|
||||||
" Color: base03 #fdf6e3 ~ 15
|
|
||||||
" Color: yellow #b58900 ~ 3
|
|
||||||
" Color: orange #cb4b16 ~ 9
|
|
||||||
" Color: red #dc322f ~ 1
|
|
||||||
" Color: magenta #d33682 ~ 5
|
|
||||||
" Color: violet #6c71c4 ~ 13
|
|
||||||
" Color: blue #268bd2 ~ 4
|
|
||||||
" Color: cyan #2aa198 ~ 6
|
|
||||||
" Color: green #859900 ~ 2
|
|
||||||
" Color: back #fdf6e3 ~ 15
|
|
||||||
" Normal base0 none
|
|
||||||
" FoldColumn base0 none
|
|
||||||
" Folded base0 none bold s=base03
|
|
||||||
" LineNr base01 none
|
|
||||||
" Terminal fg none
|
|
||||||
" Normal base0 back
|
|
||||||
" FoldColumn base0 base02
|
|
||||||
" Folded base0 base02 bold s=base03
|
|
||||||
" LineNr base01 base02
|
|
||||||
" Terminal fg back
|
|
||||||
" Cursor base03 base0
|
|
||||||
" Cursor base03 red
|
|
||||||
" MatchParen base03 base00 bold
|
|
||||||
" NonText red none bold
|
|
||||||
" SpecialKey red none reverse
|
|
||||||
" SpellBad magenta base03 t=underline,reverse g=undercurl,reverse s=violet
|
|
||||||
" SpellCap magenta base03 t=underline,reverse g=undercurl,reverse s=violet
|
|
||||||
" SpellLocal yellow base03 t=underline,reverse g=undercurl,reverse s=orange
|
|
||||||
" SpellRare cyan base03 t=underline,reverse g=undercurl,reverse s=orange
|
|
||||||
" Title orange none bold
|
|
||||||
" Cursor base03 base0
|
|
||||||
" Cursor base03 orange
|
|
||||||
" MatchParen red base02 bold,underline
|
|
||||||
" NonText base02 none bold
|
|
||||||
" SpecialKey base02 none bold
|
|
||||||
" SpellBad magenta none t=underline g=undercurl s=violet
|
|
||||||
" SpellCap magenta none t=underline g=undercurl s=violet
|
|
||||||
" SpellLocal yellow none t=underline g=undercurl s=yellow
|
|
||||||
" SpellRare cyan none t=underline g=undercurl s=cyan
|
|
||||||
" Title base01 none bold
|
|
||||||
" Cursor base03 base0
|
|
||||||
" Cursor base03 orange
|
|
||||||
" MatchParen red base02 bold,underline
|
|
||||||
" NonText base00 none bold
|
|
||||||
" SpecialKey base00 base02 bold
|
|
||||||
" SpellBad magenta none t=underline g=undercurl s=violet
|
|
||||||
" SpellCap magenta none t=underline g=undercurl s=violet
|
|
||||||
" SpellLocal yellow none t=underline g=undercurl s=yellow
|
|
||||||
" SpellRare cyan none t=underline g=undercurl s=cyan
|
|
||||||
" Title orange none bold
|
|
||||||
" ColorColumn none base02
|
|
||||||
" Conceal blue none
|
|
||||||
" CursorColumn none base02
|
|
||||||
" CursorLine none base02 s=base1
|
|
||||||
" DiffAdd green none reverse
|
|
||||||
" DiffChange yellow none reverse
|
|
||||||
" DiffDelete red none reverse
|
|
||||||
" DiffText blue none reverse
|
|
||||||
" DiffAdd green none s=green
|
|
||||||
" DiffChange yellow none s=yellow
|
|
||||||
" DiffDelete red none bold
|
|
||||||
" DiffText blue none s=blue
|
|
||||||
" DiffAdd green base02 s=green
|
|
||||||
" DiffChange yellow base02 s=yellow
|
|
||||||
" DiffDelete red base02 bold
|
|
||||||
" DiffText blue base02 s=blue
|
|
||||||
" Directory blue none
|
|
||||||
" EndOfBuffer none none
|
|
||||||
" ErrorMsg red base03 reverse
|
|
||||||
" IncSearch orange none standout
|
|
||||||
" ModeMsg blue none
|
|
||||||
" MoreMsg blue none
|
|
||||||
" Pmenu base0 base02 reverse
|
|
||||||
" PmenuSbar base2 base0 reverse
|
|
||||||
" PmenuSel base01 base2 reverse
|
|
||||||
" PmenuThumb base0 base03 reverse
|
|
||||||
" Question cyan none bold
|
|
||||||
" QuickFixLine -> Search
|
|
||||||
" Search yellow none reverse
|
|
||||||
" SignColumn base0 none
|
|
||||||
" StatusLine base01 base03 reverse
|
|
||||||
" StatusLineNC base01 base1 reverse
|
|
||||||
" TabLine base01 base1 reverse
|
|
||||||
" TabLineFill base01 base1 reverse
|
|
||||||
" TabLineSel base1 base03 reverse
|
|
||||||
" StatusLine base1 base02 reverse
|
|
||||||
" StatusLineNC base00 base02 reverse
|
|
||||||
" TabLine base00 base02 reverse
|
|
||||||
" TabLineFill base00 base02 reverse
|
|
||||||
" TabLineSel base1 base02 reverse
|
|
||||||
" StatusLineTerm -> StatusLine
|
|
||||||
" StatusLineTermNC -> StatusLineNC
|
|
||||||
" VertSplit base1 base01
|
|
||||||
" Visual base01 base03 reverse
|
|
||||||
" VisualNOS none base02 reverse
|
|
||||||
" WarningMsg orange none bold
|
|
||||||
" WildMenu base2 base02 reverse
|
|
||||||
" Boolean -> Constant
|
|
||||||
" Character -> Constant
|
|
||||||
" Comment base01 none g=italic
|
|
||||||
" Conditional -> Statement
|
|
||||||
" Constant cyan none
|
|
||||||
" Define -> PreProc
|
|
||||||
" Debug -> Special
|
|
||||||
" Delimiter -> Special
|
|
||||||
" Error red none bold
|
|
||||||
" Exception -> Statement
|
|
||||||
" Float -> Constant
|
|
||||||
" Function -> Identifier
|
|
||||||
" Identifier blue none
|
|
||||||
" Ignore none none
|
|
||||||
" Include -> PreProc
|
|
||||||
" Keyword -> Statement
|
|
||||||
" Label -> Statement
|
|
||||||
" Macro -> PreProc
|
|
||||||
" Number -> Constant
|
|
||||||
" Operator -> Statement
|
|
||||||
" PreCondit -> PreProc
|
|
||||||
" PreProc orange none
|
|
||||||
" Repeat -> Statement
|
|
||||||
" Special orange none
|
|
||||||
" SpecialChar -> Special
|
|
||||||
" SpecialComment -> Special
|
|
||||||
" Statement green none
|
|
||||||
" StorageClass -> Type
|
|
||||||
" String -> Constant
|
|
||||||
" Structure -> Type
|
|
||||||
" Tag -> Special
|
|
||||||
" Todo magenta none bold
|
|
||||||
" Type yellow none
|
|
||||||
" Typedef -> Type
|
|
||||||
" Underlined violet none
|
|
||||||
" lCursor -> Cursor
|
|
||||||
" CursorIM none fg
|
|
||||||
" ToolbarLine none base02
|
|
||||||
" ToolbarButton base1 base02 bold
|
|
||||||
" NormalMode base1 base03 reverse
|
|
||||||
" InsertMode cyan base03 reverse
|
|
||||||
" ReplaceMode orange base03 reverse
|
|
||||||
" VisualMode magenta base03 reverse
|
|
||||||
" CommandMode magenta base03 reverse
|
|
||||||
" vimVar -> Identifier
|
|
||||||
" vimFunc -> Function
|
|
||||||
" vimUserFunc -> Function
|
|
||||||
" helpSpecial -> Special
|
|
||||||
" vimSet -> Normal
|
|
||||||
" vimSetEqual -> Normal
|
|
||||||
" vimCommentString violet none
|
|
||||||
" vimCommand yellow none
|
|
||||||
" vimCmdSep blue none bold
|
|
||||||
" helpExample base1 none
|
|
||||||
" helpOption cyan none
|
|
||||||
" helpNote magenta none
|
|
||||||
" helpVim magenta none
|
|
||||||
" helpHyperTextJump blue none
|
|
||||||
" helpHyperTextEntry green none
|
|
||||||
" vimIsCommand base00 none
|
|
||||||
" vimSynMtchOpt yellow none
|
|
||||||
" vimSynType cyan none
|
|
||||||
" vimHiLink blue none
|
|
||||||
" vimHiGroup blue none
|
|
||||||
" vimGroup blue none bold
|
|
||||||
" diffAdded -> Statement
|
|
||||||
" diffLine -> Identifier
|
|
||||||
" gitcommitComment base01 none g=italic
|
|
||||||
" gitcommitUntracked -> gitcommitComment
|
|
||||||
" gitcommitDiscarded -> gitcommitComment
|
|
||||||
" gitcommitSelected -> gitcommitComment
|
|
||||||
" gitcommitUnmerged green none bold
|
|
||||||
" gitcommitOnBranch base01 none bold
|
|
||||||
" gitcommitBranch magenta none bold
|
|
||||||
" gitcommitNoBranch -> gitcommitBranch
|
|
||||||
" gitcommitdiscardedtype red none
|
|
||||||
" gitcommitselectedtype green none
|
|
||||||
" gitcommitHeader base01 none
|
|
||||||
" gitcommitUntrackedFile cyan none bold
|
|
||||||
" gitcommitDiscardedFile red none bold
|
|
||||||
" gitcommitSelectedFile green none bold
|
|
||||||
" gitcommitUnmergedFile yellow none bold
|
|
||||||
" gitcommitFile base0 none bold
|
|
||||||
" gitcommitDiscardedArrow -> gitcommitDiscardedFile
|
|
||||||
" gitcommitSelectedArrow -> gitcommitSelectedFile
|
|
||||||
" gitcommitUnmergedArrow -> gitcommitUnmergedFile
|
|
||||||
" htmlTag base01 none
|
|
||||||
" htmlEndTag base01 none
|
|
||||||
" htmlTagN base1 none bold
|
|
||||||
" htmlTagName blue none bold
|
|
||||||
" htmlSpecialTagName blue none g=italic
|
|
||||||
" htmlArg base00 none
|
|
||||||
" javaScript yellow none
|
|
||||||
" jsFuncCall -> Function
|
|
||||||
" perlHereDoc base1 back
|
|
||||||
" perlVarPlain yellow back
|
|
||||||
" perlStatementFileDesc cyan back
|
|
||||||
" texstatement cyan back
|
|
||||||
" texmathzonex yellow back
|
|
||||||
" texmathmatcher yellow back
|
|
||||||
" texreflabel yellow back
|
|
||||||
" rubyDefine base1 back bold
|
|
||||||
" rubySymbol -> Type
|
|
||||||
" rubyBoolean magenta back
|
|
||||||
" cPreCondit orange none
|
|
||||||
" VarId blue none
|
|
||||||
" ConId yellow none
|
|
||||||
" hsImport magenta none
|
|
||||||
" hsString base00 none
|
|
||||||
" hsStructure cyan none
|
|
||||||
" hs_hlFunctionName blue none
|
|
||||||
" hsStatement cyan none
|
|
||||||
" hsImportLabel cyan none
|
|
||||||
" hs_OpFunctionName yellow none
|
|
||||||
" hs_DeclareFunction orange none
|
|
||||||
" hsVarSym cyan none
|
|
||||||
" hsType yellow none
|
|
||||||
" hsTypedef cyan none
|
|
||||||
" hsModuleName green none
|
|
||||||
" hsImportParams -> Delimiter
|
|
||||||
" hsDelimTypeExport -> Delimiter
|
|
||||||
" hsModuleStartLabel -> hsStructure
|
|
||||||
" hsModuleWhereLabel -> hsModuleStartLabel
|
|
||||||
" hsNiceOperator cyan none
|
|
||||||
" hsniceoperator cyan none
|
|
||||||
" pandocTitleBlock blue none
|
|
||||||
" pandocTitleBlockTitle blue none bold
|
|
||||||
" pandocTitleComment blue none bold
|
|
||||||
" pandocComment base01 none g=italic
|
|
||||||
" pandocVerbatimBlock yellow none
|
|
||||||
" pandocVerbatimBlockDeep -> pandocVerbatimBlock
|
|
||||||
" pandocCodeBlock -> pandocVerbatimBlock
|
|
||||||
" pandocCodeBlockDelim -> pandocVerbatimBlock
|
|
||||||
" pandocBlockQuote blue none
|
|
||||||
" pandocBlockQuoteLeader1 blue none
|
|
||||||
" pandocBlockQuoteLeader2 cyan none
|
|
||||||
" pandocBlockQuoteLeader3 yellow none
|
|
||||||
" pandocBlockQuoteLeader4 red none
|
|
||||||
" pandocBlockQuoteLeader5 base0 none
|
|
||||||
" pandocBlockQuoteLeader6 base01 none
|
|
||||||
" pandocListMarker magenta none
|
|
||||||
" pandocListReference magenta none
|
|
||||||
" pandocDefinitionBlock violet none
|
|
||||||
" pandocDefinitionTerm violet none standout
|
|
||||||
" pandocDefinitionIndctr violet none bold
|
|
||||||
" pandocEmphasisDefinition violet none g=italic
|
|
||||||
" pandocEmphasisNestedDefinition violet none bold
|
|
||||||
" pandocStrongEmphasisDefinition violet none bold
|
|
||||||
" pandocStrongEmphasisNestedDefinition violet none bold
|
|
||||||
" pandocStrongEmphasisEmphasisDefinition violet none bold
|
|
||||||
" pandocStrikeoutDefinition violet none reverse
|
|
||||||
" pandocVerbatimInlineDefinition violet none
|
|
||||||
" pandocSuperscriptDefinition violet none
|
|
||||||
" pandocSubscriptDefinition violet none
|
|
||||||
" pandocTable blue none
|
|
||||||
" pandocTableStructure blue none
|
|
||||||
" pandocTableStructureTop -> pandocTableStructre
|
|
||||||
" pandocTableStructureEnd -> pandocTableStructre
|
|
||||||
" pandocTableZebraLight blue base03
|
|
||||||
" pandocTableZebraDark blue base02
|
|
||||||
" pandocEmphasisTable blue none g=italic
|
|
||||||
" pandocEmphasisNestedTable blue none bold
|
|
||||||
" pandocStrongEmphasisTable blue none bold
|
|
||||||
" pandocStrongEmphasisNestedTable blue none bold
|
|
||||||
" pandocStrongEmphasisEmphasisTable blue none bold
|
|
||||||
" pandocStrikeoutTable blue none reverse
|
|
||||||
" pandocVerbatimInlineTable blue none
|
|
||||||
" pandocSuperscriptTable blue none
|
|
||||||
" pandocSubscriptTable blue none
|
|
||||||
" pandocHeading orange none bold
|
|
||||||
" pandocHeadingMarker orange none bold
|
|
||||||
" pandocEmphasisHeading orange none bold
|
|
||||||
" pandocEmphasisNestedHeading orange none bold
|
|
||||||
" pandocStrongEmphasisHeading orange none bold
|
|
||||||
" pandocStrongEmphasisNestedHeading orange none bold
|
|
||||||
" pandocStrongEmphasisEmphasisHeading orange none bold
|
|
||||||
" pandocStrikeoutHeading orange none reverse
|
|
||||||
" pandocVerbatimInlineHeading orange none bold
|
|
||||||
" pandocSuperscriptHeading orange none bold
|
|
||||||
" pandocSubscriptHeading orange none bold
|
|
||||||
" pandocLinkDelim base01 none
|
|
||||||
" pandocLinkLabel blue none
|
|
||||||
" pandocLinkText blue none
|
|
||||||
" pandocLinkURL base00 none
|
|
||||||
" pandocLinkTitle base00 none
|
|
||||||
" pandocLinkTitleDelim base01 none s=base00
|
|
||||||
" pandocLinkDefinition cyan none s=base00
|
|
||||||
" pandocLinkDefinitionID blue none bold
|
|
||||||
" pandocImageCaption violet none bold
|
|
||||||
" pandocFootnoteLink green none
|
|
||||||
" pandocFootnoteDefLink green none bold
|
|
||||||
" pandocFootnoteInline green none bold
|
|
||||||
" pandocFootnote green none
|
|
||||||
" pandocCitationDelim magenta none
|
|
||||||
" pandocCitation magenta none
|
|
||||||
" pandocCitationID magenta none
|
|
||||||
" pandocCitationRef magenta none
|
|
||||||
" pandocStyleDelim base01 none
|
|
||||||
" pandocEmphasis base0 none g=italic
|
|
||||||
" pandocEmphasisNested base0 none bold
|
|
||||||
" pandocStrongEmphasis base0 none bold
|
|
||||||
" pandocStrongEmphasisNested base0 none bold
|
|
||||||
" pandocStrongEmphasisEmphasis base0 none bold
|
|
||||||
" pandocStrikeout base01 none reverse
|
|
||||||
" pandocVerbatimInline yellow none
|
|
||||||
" pandocSuperscript violet none
|
|
||||||
" pandocSubscript violet none
|
|
||||||
" pandocRule blue none bold
|
|
||||||
" pandocRuleLine blue none bold
|
|
||||||
" pandocEscapePair red none bold
|
|
||||||
" pandocCitationRef magenta none
|
|
||||||
" pandocNonBreakingSpace red none reverse
|
|
||||||
" pandocEscapedCharacter -> pandocEscapePair
|
|
||||||
" pandocLineBreak -> pandocEscapePair
|
|
||||||
" pandocMetadataDelim base01 none
|
|
||||||
" pandocMetadata blue none
|
|
||||||
" pandocMetadataKey blue none
|
|
||||||
" pandocMetadata blue none bold
|
|
||||||
" pandocMetadataTitle -> pandocMetadata
|
|
||||||
" TermCursor -> Cursor
|
|
||||||
" TermCursorNC base03 base01
|
|
||||||
|
|
Loading…
Reference in a new issue