Commit Graph

242 Commits

Author SHA1 Message Date
Lifepillar
2b5bad7944 Cleanup the template a bit. 2023-06-02 23:01:14 +02:00
Lifepillar
85c0cbed35 Avoid generating ctermul attributes. 2023-06-02 22:32:01 +02:00
Lifepillar
4004d6a10e Add missing highlight groups. v1.5.0 2023-06-02 13:14:02 +02:00
Lifepillar
f623908a94 Merge branch 'colortemplate-v3' 2023-06-02 13:05:09 +02:00
Lifepillar
e9e64360e7 Clean up templates and rebuild with Colortemplate v3.0.0-alpha0. 2023-06-02 13:04:52 +02:00
Lifepillar
b0b5d4dd1e Merge branch 'chrisbra-gitattributes' 2023-04-30 11:03:37 +02:00
Lifepillar
b0d3e1602f Check for italics in extra highlight groups. 2023-04-30 11:00:30 +02:00
Lifepillar
7d6cae7faa Merge branch 'chrisbra-gitattributes' 2023-04-30 10:49:51 +02:00
Lifepillar
d8ff9247f1 Merge branch 'gitattributes' of https://github.com/chrisbra/vim-solarized8 into chrisbra-gitattributes 2023-04-30 10:49:05 +02:00
Christian Brabandt
aff5cc8859 add gitattributes file 2023-04-27 13:57:50 +02:00
Lifepillar
2cf827f778 Complete the upgrade to Colortemplate v3 syntax. 2023-04-24 21:04:30 +02:00
Lifepillar
a9e5707be0 Start updating to Colortemplate v3 syntax. 2023-04-23 23:54:40 +02:00
Lifepillar
bcd4e74e98 Merge pull request #101 from wshanks/wshanks-patch-1
Add additional suggestion for tmux colors
2023-02-25 12:52:31 +00:00
Will Shanks
d075804ea1 Add additional suggestion for tmux colors 2023-02-22 16:06:03 -05:00
Lifepillar
9f9b795197 Fix inconsistent documentation. 2022-05-03 09:37:07 +02:00
Lifepillar
0760564a51 Update documentation. 2022-03-30 14:23:29 +02:00
Lifepillar
ed0b0e1bed Do not link vimSet and vimSetEqual to Normal.
Fixes https://github.com/lifepillar/vim-solarized8/issues/95.
2022-03-29 13:48:30 +02:00
Lifepillar
4ee5050167 Rebuild with Colortemplate v2.2.0.
Fix an error about s:termtrans not being defined. The error is due to
the new way Colortemplate generates the output code.

Make g:solarized_extra_hi_groups=1 by default, as the Vim issue with
filetype-specific highlight groups in color schemes has been fixed a
while ago.
v1.4.0
2022-03-20 15:14:14 +01:00
Lifepillar
28b81a4263 Remove background color from some extra hi groups.
When the user sets a transparent background, some filetype-specific
highlight groups do not become transparent, because their background has
been set to `back`. Fix it by setting the background to NONE.

Fixes https://github.com/lifepillar/vim-solarized8/issues/92.
v1.3.0
2021-04-24 20:37:59 +02:00
Lifepillar
d3ba802421 Rebuild color schemes. 2021-03-12 21:29:30 +01:00
Lifepillar
bc68029f89 Update script template. 2021-03-12 21:27:47 +01:00
Lifepillar
f1b5933ebb Fix option's name in help file. 2021-03-12 21:25:30 +01:00
Lifepillar
7b1425bf71 Update Readme. 2021-03-12 21:24:41 +01:00
Lifepillar
728a4c697d Update Readme. 2021-03-12 21:12:52 +01:00
Lifepillar
e46261e6b2 Update Readme. 2021-03-12 21:10:32 +01:00
Lifepillar
a2bc2bf284 Update Readme. 2021-03-12 21:07:29 +01:00
Lifepillar
c04ea6960a Update Readme. 2021-03-12 21:05:22 +01:00
Lifepillar
22a83731c6 Update Readme.
Include clarifications about installation from @Airwan.

Fixes https://github.com/lifepillar/vim-solarized8/issues/91.
2021-03-12 21:01:34 +01:00
Lifepillar
f9a994d4e6 Merge branch 'hkbakke-master' 2021-03-12 11:05:47 +01:00
Hans-Kristian Bakke
dab034b32e Make solarized8.sh sh compatible
The script contained bashisms like substring expansions and a double
quoted tests but still had a /bin/sh shebang, which broke execution on
distros where sh is pointing to `dash` or something other than bash.
Modern Debian is one such example.

Additionally, as the regex pattern was quoted in the original test it
was interpreted literally and not as a regex pattern so the original
logic did not work as intended, even if executed in bash.

The new version keeps the same logic (although without the regex issue)
but implemented in a way that should be compliant with most sh shells,
and perhaps a bit easier to extend with other shells.

The script now depends on sed to replace the bash substring expansion
logic, but sed should be available on almost any system.
2021-03-09 19:02:06 +01:00
Hans-Kristian Bakke
2dd890729e Make solarized8.sh executable 2021-03-09 17:48:10 +01:00
Lifepillar
7b6399093c Rebuild with Colortemplate v2.1.0. 2020-09-20 15:28:01 +02:00
Lifepillar
edf0659c3c Use new comment symbols for templates. 2020-09-20 15:27:19 +02:00
Lifepillar
5df7666374 Merge branch 'boweevil-ale-support' 2019-12-11 20:05:13 +01:00
boweevil
d916a6438c Add support for ALE syntax checker
https://github.com/dense-analysis/ale

- General optimization of the tones for ALE highlighting in the sign
column and on error and warning markings in file.
- If 'g:ale_sign_highlight_linenrs' is enabled this will use Neovim's
number line highlighting.
2019-12-09 05:39:25 -05:00
Lifepillar
cd5e87ccfa Set Title's color to orange for dark background.
When visibility is "normal", set the Title highlight group's foreground
color to orange instead of yellow, as it was in the original Solarized.

This change addresses https://github.com/lifepillar/vim-solarized8/issues/76.

A yellow Title can be obtained by setting

    let g:solarized_visibility = "high"
2019-10-06 13:00:05 +02:00
Lifepillar
9afbe12f68 Rebuild with Colortemplate v2.0.0. v1.2.0 2019-07-14 22:07:25 +02:00
Lifepillar
cbd8c11011 Rebuild the color schemes. 2019-06-29 14:34:30 +02:00
Lifepillar
de83fec3e5 Update b&w template to use omit keyword. 2019-06-29 14:34:06 +02:00
Lifepillar
7b0cda1da3 Fix CursorLine/CursorColumn/ColorColumn highlighting.
Fixes also https://github.com/lifepillar/vim-solarized8/issues/72.
2019-06-27 22:34:24 +02:00
Lifepillar
c518404623 Rebuild the color schemes. 2019-06-26 19:33:42 +02:00
Lifepillar
de124fa1ea Reinstate g:solarized_use16.
Neovim ignores `&t_Co` and `&term`, so it is not possible in Neovim to
use the ANSI colors when `termguicolors` is not set.

Re-add this option to override the value of `s:t_Co`.

Fixes https://github.com/lifepillar/vim-solarized8/issues/71.
2019-06-26 19:33:28 +02:00
Lifepillar
b36b068a56 Define base-16 value for 'unused' color. 2019-06-10 21:39:16 +02:00
Lifepillar
968e6b2c36 Mention in the Readme how VimR should be configured. 2019-06-07 18:56:17 +02:00
Lifepillar
37fbf3ee78 Rebuild the color scheme with fix for italics in iOS. 2019-06-06 20:59:01 +02:00
Lifepillar
9469551d31 Make the chart a bit larger. 2019-06-06 17:48:03 +02:00
Lifepillar
1241c398fc Update the Readme. 2019-06-06 17:43:36 +02:00
Lifepillar
97110edfc1 Rebuild the color schemes. 2019-06-06 17:43:11 +02:00
Lifepillar
0ef7d9856a Update help file. 2019-06-06 17:41:10 +02:00
Lifepillar
7cfad636de Remove benchmark folder. 2019-06-06 17:40:53 +02:00