mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
nvim/lua/user/plugins/ui/colorscheme.lua: todo comments
This commit is contained in:
parent
8715f65c86
commit
3c9a19b863
1 changed files with 15 additions and 0 deletions
|
|
@ -153,6 +153,14 @@ local custom_highlights = function(colors)
|
|||
RenderMarkdownCode = { bg = colors.crust },
|
||||
RenderMarkdownCodeInline = { fg = colors.rosewater, bg = colors.crust },
|
||||
|
||||
-- todo comments
|
||||
TodoCommentsDefault = { fg = colors.flamingo },
|
||||
TodoCommentsInfo = { fg = colors.blue },
|
||||
TodoCommentsError = { fg = colors.maroon },
|
||||
TodoCommentsWarning = { fg = colors.peach },
|
||||
TodoCommentsHint = { fg = colors.sapphire },
|
||||
TodoCommentsTest = { fg = colors.pink },
|
||||
|
||||
-- Syntax
|
||||
PreProc = { fg = colors.mauve },
|
||||
Operator = { fg = colors.flamingo },
|
||||
|
|
@ -184,6 +192,13 @@ local custom_highlights = function(colors)
|
|||
["@namespace"] = { link = "@keyword" },
|
||||
["@punctuation.bracket"] = { link = "@punctuation" },
|
||||
|
||||
-- Comments
|
||||
["@punctuation.delimiter.comment"] = { link = "@Comment"},
|
||||
["@comment.error"] = { link = "@Comment" },
|
||||
["@comment.warning"] = { link = "@Comment" },
|
||||
["@comment.todo"] = { link = "@Comment" },
|
||||
["@comment.note.comment"] = { link = "@Comment" },
|
||||
|
||||
-- LSP
|
||||
["@lsp.type.property"] = { link = "@variable" },
|
||||
["@lsp.type.namespace.go"] = { fg = colors.rosewater },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue