@@ -26,26 +26,26 @@ any option.
26
26
Date: April 23, 2023
27
27
28
28
The way to override color variables has been updated. You can now use the
29
- | specs | table to change colors for a specific colorscheme or for all of them
30
- with the | all | table. To override highlight groups, use the | groups | table in
29
+ ` specs` table to change colors for a specific colorscheme or for all of them
30
+ with the ` all ` table. To override highlight groups, use the ` groups` table in
31
31
the configuration.
32
32
33
33
Some changes have been made to the names of the colorschemes. You can check
34
34
the names of the colorschemes in the "colors" directory in the project root,
35
- or by using the * :colorscheme* vim command.
35
+ or by using the ` :colorscheme ` vim command.
36
36
37
37
The deprecated colorschemes will no longer support any overriding highlight
38
38
groups or color variables. The updated colorscheme list:
39
39
40
- - | github_dark_default | -> | github_dark_high_contrast |
41
- - | github_dimmed | -> | github_dark_dimmed |
42
- - | github_light_default | -> | github_light_high_contrast |
43
- - | github_dark_tritanopia | -> New!
44
- - | github_light_tritanopia | -> New!
40
+ - github_dark_default -> github_dark_high_contrast
41
+ - github_dimmed -> github_dark_dimmed
42
+ - github_light_default -> github_light_high_contrast
43
+ - github_dark_tritanopia -> New!
44
+ - github_light_tritanopia -> New!
45
45
46
46
The updated configuration keys are:
47
- - | colors | -> Use | specs | and | palettes | instead.
48
- - | overrides | -> Use | groups | instead.
47
+ - colors -> Use ` specs` and ` palettes` instead.
48
+ - overrides -> Use ` groups` instead.
49
49
50
50
Example:
51
51
>lua
@@ -93,31 +93,31 @@ Example:
93
93
Date: April 13, 2023
94
94
95
95
The configuration for defining transparency, darkening windows, floating, and
96
- hiding elements has been moved to the * options* table.
96
+ hiding elements has been moved to the ` options ` table.
97
97
98
98
The updated configuration keys are as follows:
99
- - | transparent | -> | options.transparent |
100
- - | hide_end_of_buffer | -> | options.hide_end_of_buffer |
101
- - | hide_inactive_statusline | -> | options.hide_nc_statusline |
102
- - | dark_float | -> | options.darken.floats |
103
- - | dark_sidebar | -> | options.darken.sidebars.enable |
104
- - | sidebars | -> | options.darken.sidebars.list |
99
+ - transparent -> options.transparent
100
+ - hide_end_of_buffer -> options.hide_end_of_buffer
101
+ - hide_inactive_statusline -> options.hide_nc_statusline
102
+ - dark_float -> options.darken.floats
103
+ - dark_sidebar -> options.darken.sidebars.enable
104
+ - sidebars -> options.darken.sidebars.list
105
105
106
106
107
107
108
108
*github-theme.changelog-12042023*
109
109
110
110
Date: April 12, 2023
111
111
112
- The configuration for defining styles has been migrated to * options.styles* .
113
- As part of this migration, * msg_area_style* has been removed.
112
+ The configuration for defining styles has been migrated to ` options .styles` .
113
+ As part of this migration, ` msg_area_style` has been removed.
114
114
115
115
Here is the updated config keys:
116
- - | comment_style | -> | options.styles.comments |
117
- - | function_style | -> | options.styles.functions |
118
- - | keyword_style | -> | options.styles.keywords |
119
- - | variable_style | -> | options.styles.variables |
120
- - | msg_area_style | -> Removed.
116
+ - comment_style -> options.styles.comments
117
+ - function_style -> options.styles.functions
118
+ - keyword_style -> options.styles.keywords
119
+ - variable_style -> options.styles.variables
120
+ - msg_area_style -> Removed.
121
121
122
122
123
123
@@ -130,8 +130,9 @@ process of setting the colorscheme has been changed, It is important to note
130
130
that the configuration may undergo further changes in the future, and will be
131
131
described in the latest changelogs and documentation.
132
132
133
- Additionally, the currently used colorscheme palettes within the *palette*
134
- module have been given the prefix | 'github_' | .
133
+ Additionally, the currently used colorscheme palettes within the
134
+ `github- theme.palette.* ` module have been given the prefix
135
+ `github- theme.palette.github_* ` .
135
136
136
137
Old approach for setting the theme:
137
138
>lua
@@ -158,12 +159,12 @@ New approach for setting the theme:
158
159
Date: April 06, 2023
159
160
160
161
The secondary method of assigning configuration variables using
161
- | 'vim.g.github_*'| is now considered deprecated. Instead, it is recommended to
162
- use the | 'require("github-theme").setup({...} )'| function to assign
162
+ ` ' vim.g.github_*' ` is now considered deprecated. Instead, it is recommended to
163
+ use the ` ' require("github-theme").setup({...})' ` function to assign
163
164
configurations.
164
165
165
166
Any references to the deprecated modules and options can be found in the
166
- documentation located at `:h gt_deprecated.txt `.
167
+ documentation located at `:h github-theme.deprecated `.
167
168
168
169
169
170
@@ -174,14 +175,14 @@ Date: January 03, 2023
174
175
PR: https://github.com/projekt0n/github-nvim-theme/pull/222
175
176
176
177
I (ful1e5) wanted to let you know that we now have support for new treesitter
177
- highlighting groups, thanks to a contribution from | @luisiacc | . If you are
178
+ highlighting groups, thanks to a contribution from ` @l uisiacc` . If you are
178
179
using an older version of treesitter, please switch to the `v0.7 ` release tag,
179
180
which is the last version for you to take advantage of the old treesitter
180
181
highlights. We will continue to develop and support these new highlighting
181
182
groups going forward.
182
183
183
184
In addition, I am planning a major refactor of the codebase to make it
184
- compatible with | Neovim-0.9 | and will be starting a discussion on GitHub soon.
185
+ compatible with ` Neovim- 0.9 ` and will be starting a discussion on GitHub soon.
185
186
To ensure that the community is aware of any major changes before they are
186
187
implemented, I will provide advance warning before any potentially breaking
187
188
changes are pushed to upstream.
@@ -202,17 +203,18 @@ URL: https://github.com/projekt0n/github-theme-contrib
202
203
*github-theme.changelog-13122021*
203
204
204
205
Date: December 13, 2021
206
+
205
207
PR: https://github.com/projekt0n/github-nvim-theme/pull/148
206
208
207
209
This small change is made for differentiate the inactive Statusline and
208
210
tabline from the background.
209
211
210
212
A list of changes that have been made:
211
213
212
- - Minimal look deprecated for | lualine | . This deprecation is related to
214
+ - Minimal look deprecated for ` lualine` plugin . This deprecation is related to
213
215
`hide_inactive_statusline` option. This means the theme will not force the
214
- | underline | style to inactive lualine.
215
- - Native lualine theme support terminal highlights | terminal-config |
216
+ ` underline ` style to inactive lualine.
217
+ - Native lualine theme support terminal highlights ` terminal - config`
216
218
- Inactive tabline highlights got enhanced.
217
219
218
220
0 commit comments