diff options
author | Chris <[email protected]> | 2021-07-02 15:05:01 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-07-02 15:05:01 -0400 |
commit | a237de4a7c96e03ec7f490d1e81e68570935f2a3 (patch) | |
tree | 0973cfac9f6c0b9757449b93711600baed20ba0b /lua | |
parent | c0e05e391085416b85c905cfa60bae74f4ed196a (diff) |
no more underline
Diffstat (limited to 'lua')
-rw-r--r-- | lua/lv-themes/spacegray.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/lv-themes/spacegray.lua b/lua/lv-themes/spacegray.lua index 6e2263de..d21c0037 100644 --- a/lua/lv-themes/spacegray.lua +++ b/lua/lv-themes/spacegray.lua @@ -201,10 +201,10 @@ local theme = lush(function() -- use these groups, or use their own. Consult your LSP client's -- documentation. - LspDiagnosticsDefaultError {bg = "NONE", fg = c.error_red, gui = "underline"}, - LspDiagnosticsDefaultWarning {bg = "NONE", fg = c.warning_orange, gui = "underline"}, - LspDiagnosticsDefaultInformation {bg = "NONE", fg = c.info_yellow, gui = "underline"}, - LspDiagnosticsDefaultHint {bg = "NONE", fg = c.hint_blue, gui = "underline"}, + LspDiagnosticsDefaultError {bg = "NONE", fg = c.error_red, gui = "NONE"}, + LspDiagnosticsDefaultWarning {bg = "NONE", fg = c.warning_orange, gui = "NONE"}, + LspDiagnosticsDefaultInformation {bg = "NONE", fg = c.info_yellow, gui = "NONE"}, + LspDiagnosticsDefaultHint {bg = "NONE", fg = c.hint_blue, gui = "NONE"}, LspDiagnosticsVirtualTextError {LspDiagnosticsDefaultError}, LspDiagnosticsVirtualTextWarning {LspDiagnosticsDefaultWarning}, |