diff options
author | blt__ | 2023-01-12 04:22:16 +0000 |
---|---|---|
committer | GitHub | 2023-01-12 04:22:16 +0000 |
commit | c988bd9629145b5a337498937a70af555bfa6159 (patch) | |
tree | 4a9dbbfe64d27e8df8fda2dbbda6dc741ec7f542 /runtime/themes/nightfox.toml | |
parent | 4e9a0700db6df3c2be123c3c130ab7689135576a (diff) |
Change built-in themes to use curly underlines (#5419)
* Change built-in themes to use curly underlines
* Change fleet_dark to use curly underlines
Diffstat (limited to 'runtime/themes/nightfox.toml')
-rw-r--r-- | runtime/themes/nightfox.toml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/themes/nightfox.toml b/runtime/themes/nightfox.toml index c4cbbce0..1f248d5c 100644 --- a/runtime/themes/nightfox.toml +++ b/runtime/themes/nightfox.toml @@ -60,15 +60,15 @@ # DIAGNOSTICS -"warning" = { fg ="yellow", bg = "bg1" } # Diagnostics warning (gutter) +"warning" = { fg = "yellow", bg = "bg1" } # Diagnostics warning (gutter) "error" = { fg = "red", bg = "bg1" } # Diagnostics error (gutter) "info" = { fg = "blue", bg = "bg1" } # Diagnostics info (gutter) "hint" = { fg = "green", bg = "bg1" } # Diagnostics hint (gutter) -"diagnostic" = { modifiers = ["underlined"] } # Diagnostics fallback style (editing area) -"diagnostic.error" = { fg = "red" } # Diagnostics error (editing area) -"diagnostic.warning" = { fg = "yellow" } # Diagnostics warning (editing area) -"diagnostic.info" = { fg = "blue" } # Diagnostics info (editing area) -"diagnostic.hint" = { fg = "green" } # Diagnostics hint (editing area) + +"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } } # Diagnostics warning (editing area) +"diagnostic.error" = { underline = { color = "red", style = "curl" } } # Diagnostics error (editing area) +"diagnostic.info" = { underline = { color = "blue", style = "curl" } } # Diagnostics info (editing area) +"diagnostic.hint" = { underline = { color = "green", style = "curl" } } # Diagnostics hint (editing area) # SYNTAX HIGHLIGHTING |