Commit graph

205 commits

Author SHA1 Message Date
mvllow
7004d08984
fix: invalid reference 2024-01-07 15:36:22 -06:00
mvllow
be538fa309
feat: re-add inherit option for custom highlight groups 2024-01-07 15:30:53 -06:00
mvllow
c54cd8f1ad
revert: high contrast Visual
This commit reverts the high contrast Visual highlights in favour of
the previous, neutral behaviour. This allows the foreground highlights
to remain even when selected. Use the previous version in your own
configuration:

```lua
highlight_groups = {
  Visual = { fg = "base", bg = "pine" }
}
```
2024-01-07 13:18:51 -06:00
mvllow
b0f08e9ab9
feat: define fzf-lua highlights 2024-01-07 13:15:10 -06:00
mvllow
ae50dc2130
chore: explicitly set WinSeparator
Closes #191
2024-01-02 20:31:39 -06:00
mvllow
bf3a64c272
feat: bold TabLineSel, including netrw marked files 2023-12-24 10:41:15 -06:00
mvllow
e607b49b38
fix: lualine theme path 2023-11-28 10:09:21 -06:00
mvllow
e1ffc902e8
chore: improve float transparency 2023-11-27 13:32:00 -06:00
mvllow
7de6b77b76
feat!: spring cleaning 2023-11-27 12:56:52 -06: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
Fitrah
667851c05f
fix: reset @lsp.type.comment (#155) 2023-04-18 11:29:36 -05:00
Егор Мартынов
3935606b6c
fix(indent-blankline): fix italic indent lines (#154) 2023-04-12 18:02:24 -05:00
not
9532757a42
chore: update config types (#150) 2023-03-30 13:00:32 -05:00
mvllow
060e39b906
feat: update bufferline selected tab
Ref #149
2023-03-30 12:23:39 -05:00
mvllow
17723f76ea
Merge branch 'main' of github.com:rose-pine/neovim 2023-03-23 14:03:19 -05:00
mvllow
14b46ccdd4
feat: match editor background for GitSigns* gutter 2023-03-23 14:02:37 -05:00
Егор Мартынов
44ba4bd558
feat: add lsp injected highlights (#148) 2023-03-23 08:17:32 -05:00
mvllow
835129f6a8
feat: alias _experimental_nc to nc in the palette 2023-03-22 18:44:38 -05:00
Pedro Cattori
69f015b952
feat: highlights for goolord/alpha-nvim (#146) 2023-03-19 09:37:25 -05:00
mvllow
1883d8b417
groups.background now overrides all base instances 2023-03-12 14:35:16 -05:00
Jakub Theimer
63821c18a2
add highlights for mini.indentscope (#144) 2023-03-09 12:22:33 -06:00
Will Leinweber
6986ff21ab
Add popup title bar color for NeoTree (#140) 2023-03-08 09:10:19 -06:00
Егор Мартынов
b3afc8e6a4
add @lsp.type highlight groups (add support for lsp semantic token groups) (#141) 2023-03-08 09:09:04 -06:00
Егор Мартынов
6535f2dc88
feat: add NoiceCursor highlight group (#138) 2023-03-07 21:45:48 -06:00
not
dcc3b0c7ca
feat: update navic colours (#136) 2023-03-06 15:07:12 -06:00
not
70b2b915a5
feat: add background_nc and panel_nc groups (#130) (#132) 2023-03-06 14:40:10 -06:00
Jakub Theimer
6e9d6fb0de
Add highlights for nvim-navic (#135) 2023-03-06 14:35:28 -06:00
Tom Marien
f977f08853
feat: added leap highlight groups (#133) 2023-03-04 09:17:46 -06:00
Brian Di Palma
4d6b2a2fe4
fix: Make extent/size of floating windows clearer (#129) 2023-02-24 12:06:25 -06:00
mvllow
5491136d31
fix: transparent Pmenu when disable_float_background
Closes #124
2023-02-23 14:03:14 -06:00
not
4eac261d57
Merge canary (#114)
* feat!: use new highlight api

* feat: support custom highlight blending

Example:

```
{
	highlight_groups = {
		StatusLine = { bg = 'love', blend = 10 }
	}
}
```

* refactor: move config into separate file

* wip: update semantic tokens

* ci: add issue templates

Thanks to https://github.com/folke/lazy.nvim for the inspiration!

* ci: fix template formatting

* chore: update editorconfig

* fix: decouple more backgrounds from floats

* change `@tag.attribute` to iris

* add cursor highlights

Closes #121

* match link underline colour

* improve `dim_nc_background` behaviour

ref #123

* feat: expose each variant as individual theme

ref #98

* feat: update tokens

ref #107

* feat: distinguish between `CmpItemKind`'s
2023-02-22 13:25:36 -06:00
mvllow
e3895d8e76
fix: decouple StatusLine background from floats 2023-01-16 23:42:14 -05:00
Arkady Rost
8e800a9999
Fixed Telescope background in case when config.disable_background = true and (#110)
config.disable_float_background = false

Co-authored-by: Arkady Rost <arost@almworks.com>
2023-01-03 12:47:51 -06:00
Zakhary Kaplan
1837586b7d
fix: indent-blankline missing hlGroups (#108) 2022-12-27 11:23:58 -06:00
Slotos
02fa3a0368
Ease up diff backgrounds (#104)
Lower the blend intensity to leave sufficient colour difference for the eye to catch on.
2022-11-08 20:39:38 -05:00
Pedro Carreño
27a822e95b
fix: bufferline deprecated names (#102) 2022-10-24 12:26:41 -05:00
Myuwi
82c86091b4
fix: add support for @* treesitter highlight groups (#101) 2022-10-20 15:15:40 -05:00
Mi Yu
69dca24ba7
feat: Add neovim :checkhealth highlight groups (#100) 2022-10-03 10:39:52 -04:00
Daniel
3723a16f99
feat: Add support to markid (#97) (#99) 2022-09-20 09:40:30 -04:00
mvllow
f739adcaf8 reduce SpellBad importance 2022-09-06 17:28:48 -04:00
gdnand
0f3ea81624
ADD: dashboard hlGroups (#90) 2022-08-14 08:59:26 -04:00
Will Leinweber
9aff7f7602
feat: Add nvim-dap-ui highlight groups (#87) 2022-07-16 23:08:57 -04:00