mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
parent
7b0ab96f47
commit
9dd9c6f553
1 changed files with 4 additions and 3 deletions
|
|
@ -2,6 +2,7 @@ local p = require('rose-pine.palette')
|
||||||
|
|
||||||
local user_colors = vim.g.rose_pine_colors or {}
|
local user_colors = vim.g.rose_pine_colors or {}
|
||||||
local groups = {
|
local groups = {
|
||||||
|
punctuation = user_colors.punctuation or p.subtle,
|
||||||
comment = user_colors.comment or p.subtle,
|
comment = user_colors.comment or p.subtle,
|
||||||
hint = user_colors.hint or p.iris,
|
hint = user_colors.hint or p.iris,
|
||||||
info = user_colors.info or p.foam,
|
info = user_colors.info or p.foam,
|
||||||
|
|
@ -266,9 +267,9 @@ theme.treesitter = {
|
||||||
fg = p.iris,
|
fg = p.iris,
|
||||||
style = maybe_italic,
|
style = maybe_italic,
|
||||||
},
|
},
|
||||||
TSPunctBracket = { fg = p.subtle },
|
TSPunctBracket = { fg = groups.punctuation },
|
||||||
TSPunctDelimiter = { fg = p.subtle },
|
TSPunctDelimiter = { fg = groups.punctuation },
|
||||||
TSPunctSpecial = { fg = p.subtle },
|
TSPunctSpecial = { fg = groups.punctuation },
|
||||||
-- TSRepeat = {},
|
-- TSRepeat = {},
|
||||||
-- TSStrike = {},
|
-- TSStrike = {},
|
||||||
TSString = { fg = p.gold },
|
TSString = { fg = p.gold },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue