Rebuild colorschemes and update the docs for Neovim.

This commit is contained in:
Lifepillar
2023-06-06 14:52:56 +02:00
parent 017b7b7f29
commit 8d7abcbb41
8 changed files with 78 additions and 89 deletions

View File

@@ -4,22 +4,24 @@
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
" Website: https://github.com/lifepillar/vim-solarized8
" License: OSI approved MIT license
" Last Updated: Tue Mar 29 13:47:19 2022
" Last Updated: Tue Jun 6 14:37:53 2023
" Generated by Colortemplate v2.2.0
" Generated by Colortemplate v2.2.1
hi clear
let g:colors_name = 'solarized8_low'
let s:t_Co = exists('&t_Co') && !empty(&t_Co) && &t_Co > 1 ? &t_Co : 1
let s:t_Co = has('gui_running') ? -1 : get(g:, 'solarized_t_Co', get(g:, 't_Co', exists('&t_Co') ? +&t_Co : 0))
let s:italics = (&t_ZH != '' && &t_ZH != '') || has('gui_running') || has('nvim')
let s:t_Co = get(g:, 'solarized_use16', 0) ? 16 : s:t_Co
let s:italics = s:italics && get(g:, 'solarized_italics', 1)
let s:termtrans = get(g:, 'solarized_termtrans', 0) && !has('gui_running')
hi! link Boolean Constant
hi! link Character Constant
hi! link Conditional Statement
hi! link CurSearch Search
hi! link CursorLineFold FoldColumn
hi! link CursorLineSign SignColumn
hi! link Debug Special
hi! link Define PreProc
hi! link Delimiter Special
@@ -29,6 +31,8 @@ hi! link Function Identifier
hi! link Include PreProc
hi! link Keyword Statement
hi! link Label Statement
hi! link LineNrAbove LineNr
hi! link LineNrBelow LineNr
hi! link Macro PreProc
hi! link Number Constant
hi! link Operator Statement
@@ -44,6 +48,8 @@ hi! link String Constant
hi! link Structure Type
hi! link Tag Special
hi! link Typedef Type
hi! link debugBreakpoint SignColumn
hi! link debugPC SignColumn
hi! link lCursor Cursor
if &background ==# 'dark'
@@ -2410,4 +2416,4 @@ endif
" Term Colors: base2 red green yellow blue magenta cyan base02
" Term Colors: base3 orange base1 base0 base00 violet base01 base03
" Background: any
" vim: et ts=2 sw=2
" vim: et ts=8 sw=2 sts=2