Skip to content

Commit 806903c

Browse files
committed
Fixed darkened sidebars when disabling options.sidebars.disabled
1 parent 8c1ddaa commit 806903c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020

2121
- Fixed few regex-based/legacy highlight corrections (fixed #285)
2222
- Closed #251
23+
- Fixed darkened sidebars when disabling `options.sidebars.disabled`
2324

2425
## [v1.0.1] - 23 July 2023
2526

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ or `:h github-theme-changelog` to receive updates on breaking changes and deprec
4343
- True color support
4444
- Undercurl terminal support (optional)
4545

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.
4848
4949
## Installation
5050

@@ -599,7 +599,8 @@ Set your airline colorscheme with `:AirlineThemes` vim command.
599599
This section will help you determine what highlight group is being applied to a piece of syntax. These methods
600600
show which highlight group(s) is in use at the current screen position of the cursor (under the cursor).
601601

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()`.
603604
604605
#### Treesitter highlighting
605606

lua/github-theme/group/editor.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local C = require('github-theme.lib.color')
33
local M = {}
44

55
function M.get(spec, config)
6-
local dark_sb = config.darken.sidebars.enable
6+
local dark_sb = config.darken.sidebars.enabled
77
local hide_eof = config.hide_end_of_buffer
88
local inactive = config.dim_inactive
99
local inv = config.inverse

0 commit comments

Comments
 (0)