* feat: palette overrides
* removed option all from palett override
* removed dead code forgotten in last commit
* fix typo in readme and simplified comment
Co-authored-by: not <mvllow@icloud.com>
---------
Co-authored-by: not <mvllow@icloud.com>
* feat: add WinBar and WinBarNC
* feat: add new treesitter highlight groups
* perf: parse necessary values upfront
This commit no longer parses each highlight group, but rather user
config values only.
* fix: titles are no longer dynamically coloured
Closes#216#218#219
This commit adds a few new options and improves transparency support.
Enable transparency styles:
```lua
styles = { transparency = true }
```
Feedback is appreciated!
Configuring `highlight_groups` now merge by default. For example, to add italics without changing the colour:
```diff
- Keyword = { fg = "pine", italic = true }
+ Keyword = { italic = true }
```
Opt out of this behaviour via `inherit = false`.
* lspsaga: update readme
add lspsaga to the readme
* feat: code actions and diagnostics hl-groups
Highlight groups for:
- code actions
- diagnostics
* feat(nvim): add some more colors
Adding some more lspsaga colors.
* feat(lspsaga): finishing touches
Add the finihing touches and add the last needed highlightgroups
Disclaimer: Preview Definitions still don't work
* style(lspsaga): remove comments and rearrange
Remove uneeded comments and rearrange some code
* fix(lspsaga): preview definitions
Preview Definitions now get highlighted! Why?
Because it's *Definitions* not *Defintions*
* feat(lspsaga): add one new highlight
Add LspSagaBorderTitle highlight
* fix(lspsaga): remove lspsaga.norg
* style(lspsaga): rearrange diagnostic highlights
Rearrange `DiagnosticInformation` and `DiagnosticWarning` to their respective spots
* Revert "Merge branch 'main' into main"
This reverts commit 5d26b3da8b, reversing
changes made to 12cfac46f3.
* lspsaga: update readme
add lspsaga to the readme
* feat: code actions and diagnostics hl-groups
Highlight groups for:
- code actions
- diagnostics
* style(lspsaga): remove comments and rearrange
Remove uneeded comments and rearrange some code
* style(lspsaga): rearrange diagnostic highlights
Rearrange `DiagnosticInformation` and `DiagnosticWarning` to their respective spots
* Revert "Merge branch 'main' into main"
This reverts commit 5d26b3da8b, reversing
changes made to 12cfac46f3.
* fix(lspsaga): add missing diagnostc groups
* style(lspsaga): format with stylua
* chore: format
Co-authored-by: mvllow <mvllow@icloud.com>