mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
feat!: add new options with better support for transparency (#185)
This commit adds a few new options and improves transparency support.
Enable transparency styles:
```lua
styles = { transparency = true }
```
Feedback is appreciated!
This commit is contained in:
parent
84a88f68e1
commit
29477a109a
21 changed files with 1102 additions and 960 deletions
|
|
@ -6,10 +6,10 @@
|
|||
--- require('toggleterm').setup({ highlights = highlights })
|
||||
|
||||
return {
|
||||
Normal = { link = 'Normal' },
|
||||
NormalFloat = { link = 'Normal' },
|
||||
FloatBorder = { link = 'FloatBorder' },
|
||||
SignColumn = { link = 'SignColumn' },
|
||||
StatusLine = { link = 'StatusLine' },
|
||||
StatusLineNC = { link = 'StatusLineNC' },
|
||||
Normal = { link = "Normal" },
|
||||
NormalFloat = { link = "Normal" },
|
||||
FloatBorder = { link = "FloatBorder" },
|
||||
SignColumn = { link = "SignColumn" },
|
||||
StatusLine = { link = "StatusLine" },
|
||||
StatusLineNC = { link = "StatusLineNC" },
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue