Skip to content

Commit

Permalink
feat: add few lsp highlight groups #17
Browse files Browse the repository at this point in the history
  • Loading branch information
wadackel committed Dec 21, 2023
1 parent 9408144 commit 203970f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions colors/dogrun.vim
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ hi DiagnosticUnderlineInfo gui=underline cterm=underline
hi DiagnosticHint guifg=#82dabf ctermfg=115
hi DiagnosticVirtualTextHint guifg=#545c8c ctermfg=60 gui=bold cterm=bold
hi DiagnosticUnderlineHint gui=underline cterm=underline
hi LspSignatureActiveParameter gui=italic cterm=italic
hi LspReferenceText guibg=#2f3147 ctermbg=236
hi LspReferenceRead guibg=#2f3147 ctermbg=236
hi LspReferenceWrite guibg=#2f3147 ctermbg=236
hi htmlTag guifg=#8085a6 ctermfg=103
hi htmlEndTag guifg=#8085a6 ctermfg=103
hi htmlSpecialTagName guifg=#ac8b83 ctermfg=138
Expand Down
4 changes: 4 additions & 0 deletions generator/src/highlight.rs
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,10 @@ pub fn get_highlights() -> Vec<Highlight> {
hi!("DiagnosticHint", infofg, -, -, -, -),
hi!("DiagnosticVirtualTextHint", weakfg, -, -, Bold, -),
hi!("DiagnosticUnderlineHint", -, -, -, Underline, -),
hi!("LspSignatureActiveParameter", -, -, -, Italic, -),
hi!("LspReferenceText", -, matchparenbg, -, -, -),
hi!("LspReferenceRead", -, matchparenbg, -, -, -),
hi!("LspReferenceWrite", -, matchparenbg, -, -, -),
// html
hi!("htmlTag", lightfg, -, -, -, -),
hi!("htmlEndTag", lightfg, -, -, -, -),
Expand Down

0 comments on commit 203970f

Please sign in to comment.