Rebuild the color schemes.

This commit is contained in:
Lifepillar
2019-06-06 17:43:11 +02:00
parent 0ef7d9856a
commit 97110edfc1
6 changed files with 10010 additions and 6761 deletions

View File

@@ -1,6 +1,65 @@
*solarized8.txt* For Vim version 7.4 Last change: 2019 March 26
*solarized8.txt* For Vim version 8.1 Last change: 2019 Jun 06
Solarized 8 color scheme
Modernized and actively maintained Solarized color scheme for Vim.
==============================================================================
Solarized 8 license *solarized8-license*
Colorscheme options *solarized8-options*
*g:solarized_diffmode*
Tweak the way diffs are displayed. Allowed values are `"normal"` (default),
`"high"`, and `"low"`.
>
let g:solarized_diffmode = "normal"
<
*g:solarized_enable_extra_hi_groups*
Set to 1 to enable filetype-specific syntax highlight group.
>
let g:solarized_enable_extra_hi_groups = 0
<
NOTE: setting this to 1 may leave "a wake of destruction when switching away"
(T. Pope), that is, when you switch to a different colorscheme the
highlighting may look wrong or disabled.
*g:solarized_old_cursor_style*
Set to 1 if you want to use the original Solarized's cursor style. By default,
the cursor is blue. NOTE: your terminal may override the cursor's color.
>
let g:solarized_old_cursor_style = 0
<
*g:solarized_statusline*
Set to `"low"` to reduce the contrast in the status line. Set to `"flat"` to
make the status lines, tab bars and vertical splits similar to how they look
in the flat variant (of course, `"flat"` does not have any effect in the flat
variant).
>
let g:solarized_statusline = "normal"
<
*g:solarized_italics*
Set to 0 if you do not want to enable italics. Note that the color scheme in
normal circumstances automatically detects whether italics is available. You
should never need to set this option explicitly. You may want to unset it if
you do not want Vim to display italics even when the feature is available
(e.g., in GUI versions of Vim).
>
let g:solarized_italics = 1
<
*g:solarized_termtrans*
Set to 1 if you want a transparent background. Takes effect only in the
terminal.
>
let g:solarized_termtrans = 0
<
*g:solarized_visibility*
Tweak the visibility of a few elements. Allowed values are `"normal"`
(default), `"high"`, and `"low"`.
>
let g:solarized_visibility = "normal"
<
==============================================================================
Solarized 8 license *solarized8-license*
Copyright (c) 2011 Ethan Schoonover
@@ -22,61 +81,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
==============================================================================
Solarized 8 colorscheme *solarized8*
*g:solarized_diffmode*
Tweak the way diffs are displayed. Allowed values are `"normal"` (default),
`"high"`, and `"low"`.
>
let g:solarized_diffmode = "normal"
<
*g:solarized_enable_extra_hi_groups*
Set to 1 to enable filetype-specific syntax highlight group.
>
let g:solarized_enable_extra_hi_groups = 0
<
NOTE: setting this to 1 may leave "a wake of destruction when switching away"
(T. Pope), that is, when you switch to a different colorscheme the
highlighting may look wrong or disabled.
*g:solarized_old_cursor_style*
Set to 1 if you want to use the original Solarized's cursor style. By default,
the cursor is blue. NOTE: your terminal may override the cursor's color.
>
let g:solarized_old_cursor_style = 0
<
*g:solarized_statusline*
Set to `"low"` to reduce the contrast in the status line. Set to `"flat"` to
make the status lines, tab bars and vertical splits similar to how they look
in the flat variant (of course, `"flat"` does not have any effect in the flat
variant).
>
let g:solarized_statusline = "normal"
<
*g:solarized_term_italics*
Set to 1 if you want to enable italics in the terminal.
>
let g:solarized_term_italics = 0
<
*g:solarized_termtrans*
Set to 1 if you want a transparent background. Takes effect only in the
terminal.
>
let g:solarized_termtrans = 0
<
*g:solarized_visibility*
Tweak the visibility of a few elements. Allowed values are `"normal"`
(default), `"high"`, and `"low"`.
>
let g:solarized_visibility = "normal"
<
vim:tw=78:ts=8:noet:ft=help:norl:
==============================================================================
Solarized 8 other options *solarized8-other-options*
*g:solarized_use16*
Set to 1 if you want to force the use of 16 colors.
>
let g:solarized_use16 = 0
<
vim:tw=78:ts=8:ft=help:norl: