Commit 806903c 1 parent 8c1ddaa commit 806903c Copy full SHA for 806903c
File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
20
21
21
- Fixed few regex-based/legacy highlight corrections (fixed #285 )
22
22
- Closed #251
23
+ - Fixed darkened sidebars when disabling ` options.sidebars.disabled `
23
24
24
25
## [ v1.0.1] - 23 July 2023
25
26
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ or `:h github-theme-changelog` to receive updates on breaking changes and deprec
43
43
- True color support
44
44
- Undercurl terminal support (optional)
45
45
46
- > ** Note** for MacOS: The default ` terminal ` does not support ` true color ` . Use either ` Iterm2 ` or [ another ] terminal that
47
- > supports true color.
46
+ > ** Note**
47
+ > for MacOS: The default ` terminal ` does not support ` true color ` . Use either ` Iterm2 ` or [ another ] terminal that supports true color.
48
48
49
49
## Installation
50
50
@@ -599,7 +599,8 @@ Set your airline colorscheme with `:AirlineThemes` vim command.
599
599
This section will help you determine what highlight group is being applied to a piece of syntax. These methods
600
600
show which highlight group(s) is in use at the current screen position of the cursor (under the cursor).
601
601
602
- > ** Note** On Neovim v0.9.0 and later, you can use the command ` :Inspect ` , or the Lua function ` vim.show_pos() ` .
602
+ > ** Note**
603
+ > On Neovim v0.9.0 and later, you can use the command ` :Inspect ` , or the Lua function ` vim.show_pos() ` .
603
604
604
605
#### Treesitter highlighting
605
606
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ local C = require('github-theme.lib.color')
3
3
local M = {}
4
4
5
5
function M .get (spec , config )
6
- local dark_sb = config .darken .sidebars .enable
6
+ local dark_sb = config .darken .sidebars .enabled
7
7
local hide_eof = config .hide_end_of_buffer
8
8
local inactive = config .dim_inactive
9
9
local inv = config .inverse
You can’t perform that action at this time.
0 commit comments