diff options
author | Pascal Kuthe | 2022-10-13 17:03:58 +0000 |
---|---|---|
committer | Pascal Kuthe | 2022-10-13 17:03:58 +0000 |
commit | 66a49080bc7e492c37f9cd10ed36a696de1787a3 (patch) | |
tree | e15fd2359a2dfab095af6b908168382471f24c6d /runtime/themes | |
parent | 963a0ac0bbc43e2b26a9662bc67dd226582ad12a (diff) |
merge underline-style and underline-color into a single table
Diffstat (limited to 'runtime/themes')
-rw-r--r-- | runtime/themes/dark_plus.toml | 4 | ||||
-rw-r--r-- | runtime/themes/onedark.toml | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/runtime/themes/dark_plus.toml b/runtime/themes/dark_plus.toml index afbd1b71..fbb58e64 100644 --- a/runtime/themes/dark_plus.toml +++ b/runtime/themes/dark_plus.toml @@ -92,8 +92,8 @@ "info" = { fg = "light_blue" } "hint" = { fg = "light_gray3" } -"diagnostic.error" = {underline-color = "red", underline-style = "curl"} -"diagnostic" = {underline-color = "gold", underline-style = "curl" } +"diagnostic.error".underline = { color = "red", style = "curl" } +"diagnostic".underline = { color = "gold", style = "curl" } [palette] white = "#ffffff" diff --git a/runtime/themes/onedark.toml b/runtime/themes/onedark.toml index cce0474f..c4a56b90 100644 --- a/runtime/themes/onedark.toml +++ b/runtime/themes/onedark.toml @@ -39,10 +39,10 @@ "diff.delta" = "gold" "diff.minus" = "red" -"diagnostic.info" = { underline-color = "blue", underline-style = "curl" } -"diagnostic.hint" = { underline-color = "green", underline-style = "curl" } -"diagnostic.warning" = { underline-color = "yellow", underline-style = "curl" } -"diagnostic.error" = { underline-color = "red", underline-style = "curl" } +"diagnostic.info".underline = { color = "blue", style = "curl" } +"diagnostic.hint".underline = { color = "green", style = "curl" } +"diagnostic.warning".underline = { color = "yellow", style = "curl" } +"diagnostic.error".underline = { color = "red", style = "curl" } "info" = { fg = "blue", modifiers = ["bold"] } "hint" = { fg = "green", modifiers = ["bold"] } "warning" = { fg = "yellow", modifiers = ["bold"] } |