Commit graph

306 commits

Author SHA1 Message Date
Julius Rüberg
ea0d8dbc8e
feat: add highlights for nvim-treesitter-context (#260) 2024-03-29 19:51:22 -05:00
not
2d99fea02b
feat: add mini.diff (#259) 2024-03-28 19:32:00 -05:00
Jaehwang Jung
f48fcd5ccc
fix: clear autocmd when changing colorscheme (#254) 2024-03-23 13:53:11 -05:00
not
7777aa953c
feat: highlight lsp variable constant (#246)
Closes #245
2024-03-19 18:51:46 -05:00
James Knight
c52167563e
feat: add mini.statusline highlights (#250) 2024-03-15 12:08:52 -05:00
Andrew
a29b09d15a
feat: add highlight groups for folke/trouble.nvim (#248) 2024-03-05 08:47:17 -06:00
Fitrah
f977eeba34
fix(migrate): avoid ternary 'falls through' state (#242)
See: https://riptutorial.com/lua/example/26503/emulating-ternary-operator-with--and---or--logical-operators-#undefined
2024-02-14 09:58:18 -06:00
not
f01ce3a717
feat: prioritise semantic variable highlighting (#240) 2024-02-11 20:11:47 -06:00
not
ed4b138ace
fix: markdown delimiter (#238) 2024-02-08 13:44:50 -06:00
not
2ebdcc691b
feat: improve markdown syntax (#237)
* types: update highlight type

* feat: improve markdown highlighting
2024-02-08 13:42:03 -06:00
Maxim Kozhukh
9d7474f80a
feat: use treesitter highlights for @lsp.type.variable (#233) 2024-01-29 09:57:21 -06:00
Lin Tinusgrag
aebcc1865f
feat: make markdown headings distinguishable with treesitter (#232) 2024-01-29 09:54:19 -06:00
Maxim Kozhukh
bf7f3b2bfc
fix: unable to override linked groups (#230) 2024-01-29 09:48:02 -06:00
Eric Milford
b2c8def8ec
feat: Add support for Neotest (#225)
https://github.com/nvim-neotest/neotest/
2024-01-27 21:02:37 -06:00
not
f1b08cd4d6
chore: update variable highlights (#226) 2024-01-27 20:34:00 -06:00
Wahyu Wiyoko
251d646d53
fix: misspelled highlight group name (#223) 2024-01-27 09:43:15 -06:00
not
14b371fb78
fix: regression in options (#221)
* fix: headings not migrating to flat options

* fix: invalid key when using inherit
2024-01-26 21:43:53 -06:00
not
bf00df18af
feat: add new treesitter highlights (#217)
* 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
2024-01-26 14:12:54 -06:00
not
2a4aad89a8
feat: add mini.clue and mini.pick (#215) 2024-01-18 10:28:16 -06:00
not
ae445417f4
fix: unlink TabLine from StatusLine (#214) 2024-01-16 08:31:18 -06:00
atinylittleshell
b00800948e
feat(transparency): remove lualine background (#212) 2024-01-14 21:28:49 -06:00
not
c01a4a6102
feat: support folke/flash.nvim (#211) 2024-01-12 20:46:04 -06:00
Robin Gruyters
75dd31f5ca
chore: update highlights for indent-blanklines (#210) 2024-01-12 20:39:12 -06:00
not
67b03139fe
feat: improve neogit support (#209)
* feat: improve neogit support

* add change copied
2024-01-09 15:44:36 -06:00
not
279b06d47a
fix: mismatched WinSeparator background (#208)
* fix: mismatched WinSeparator background

* feat: use border group for bolded vert split

* fix: Pmenu fg typo
2024-01-08 09:43:57 -06:00
not
29c6a52b02
revert: improve palette contrast (#207)
This commit restores the official palette colours. A future update will
address contrast.
2024-01-08 09:27:46 -06:00
not
c6d53a99d4
feat(transparency): remove more backgrounds (#205)
* feat(transparency): remove border background

* chore(transparency): remove telescope selection caret background
2024-01-07 23:41:02 -06:00
not
d884b258f0
fix: transparency not affecting Normal background (#204) 2024-01-07 19:27:50 -06:00
not
680e2889e5
feat!: enable extend_background_behind_borders by default (#201) 2024-01-07 17:55:48 -06:00
not
ea1df11122
fix: none palette value (#200) 2024-01-07 17:35:36 -06:00
not
080c8a1bbf
feat: re-add inherit option for custom highlight groups (#198) 2024-01-07 15:39:30 -06:00
not
b776a47b8b
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!
2024-01-07 13:42:09 -06:00
mortezadadgar
3e301fd3c1
Add support for fzf-lua (#194)
In a attempt make it more like telescope colors.
2024-01-07 13:14:25 -06:00
not
92762f4fa2
Update readme.md (#181) 2023-10-25 14:43:34 -05:00
not
e29002cbee
docs: fix readme typo (#179) 2023-07-28 23:04:08 +02:00
not
d93b6a6615
docs: update installation (#178) 2023-07-28 23:03:23 +02:00
Tobias Sommer
e103407675
docs: add inherit option (#175)
* Remove the option, which is not longer implemented
* Add an example for the inherit highlight config
2023-07-22 16:31:03 +02:00
Asthestarsfalll
4ac66839a5
feat: color for flash (#174) 2023-07-21 10:09:29 +02:00
Niamh Ferns
76cae45b4e
feat!: custom user highlight groups are merged with Rosé Pine defaults (#171)
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`.
2023-07-15 17:04:58 +02:00
not
932adb0d93
feat: update tag and includes for consistency with semantic tokens (#168) 2023-06-21 16:34:13 +02:00
not
aeaa2fe774
feat: change @method from iris to rose (#167)
Closes #164
2023-06-21 15:37:44 +02:00
Pedro Cattori
894acd0f4b
feat: colors for hop (#165) 2023-06-19 19:48:24 +02:00
Pedro Cattori
4c2c12f57c
feat: colors for neo-tree (#166) 2023-06-19 19:48:02 +02:00
Sebastian Wiegandt
34f68e8715
Improve Treesitter heading highlighting for Markdown (#163) 2023-06-10 23:56:22 +02:00
mvllow
6b7b38bbb3
chore: clean up types and setup logic 2023-06-07 00:14:45 +02:00
mvllow
95b458f7b8
fix: reset palette when switching colorschemes 2023-05-28 17:25:09 +02:00
not
2eace84d64
Update bug_report.yml (#157) 2023-04-30 16:27:50 -05:00
not
f39cf987ab
Update bug_report.yml 2023-04-27 12:23:40 -05:00
not
2909b6868f
Update bug_report.yml 2023-04-27 12:22:09 -05:00
Fitrah
667851c05f
fix: reset @lsp.type.comment (#155) 2023-04-18 11:29:36 -05:00