mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Change built-in themes to use curly underlines (#5419)
* Change built-in themes to use curly underlines * Change fleet_dark to use curly underlines
This commit is contained in:
parent
4e9a0700db
commit
c988bd9629
53 changed files with 237 additions and 81 deletions
|
@ -10,7 +10,12 @@
|
|||
"info" = { fg = "mid-blue", bg = "mid-green" } # Code diagnostic info in gutter (LSP).
|
||||
# ? Difference between info and hint ?
|
||||
"hint" = { fg = "light-green", modifiers = ["bold"] } # Code diagnostics hint in gutter (LSP).
|
||||
"diagnostic" = { modifiers = ["underlined"] } # Code diagnostics in editing area (LSP).
|
||||
|
||||
# Code diagnostics in editing area (LSP).
|
||||
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
|
||||
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||
"diagnostic.info" = { underline = { color = "mid-blue", style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { color = "light-green", style = "curl" } }
|
||||
|
||||
# UI ==============================
|
||||
# For styling helix itself.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue