This commit is contained in:
Michael Chris Lopez
2021-08-29 10:02:58 +08:00
parent 2b7615d454
commit 93d3ff1120

View File

@@ -39,8 +39,6 @@ local theme = lush(function()
CursorColumn { CursorLine }, -- Screen-column at the cursor, when 'cursorcolumn' is set. CursorColumn { CursorLine }, -- Screen-column at the cursor, when 'cursorcolumn' is set.
ColorColumn { bg = c.wood.de(38).li(80) }, -- used for the columns set with 'colorcolumn' ColorColumn { bg = c.wood.de(38).li(80) }, -- used for the columns set with 'colorcolumn'
DiffAdds { bg = c.leaf.de(74).li(86) }, -- diff mode: Added line |diff.txt|
DiffAdd { bg = c.leaf.de(77).li(82) }, -- diff mode: Added line |diff.txt| DiffAdd { bg = c.leaf.de(77).li(82) }, -- diff mode: Added line |diff.txt|
DiffChange { bg = c.water.de(22).li(76) }, -- diff mode: Changed line |diff.txt| DiffChange { bg = c.water.de(22).li(76) }, -- diff mode: Changed line |diff.txt|
DiffDelete { bg = c.rose.de(32).li(74) }, -- diff mode: Deleted line |diff.txt| DiffDelete { bg = c.rose.de(32).li(74) }, -- diff mode: Deleted line |diff.txt|
@@ -270,7 +268,11 @@ local theme = lush(function()
CocWarningVitualText { LspDiagnosticsVirtualTextWarning }, CocWarningVitualText { LspDiagnosticsVirtualTextWarning },
CocSelectedText { SpellBad }, CocSelectedText { SpellBad },
CocCodeLens { LineNr }, CocCodeLens { LineNr },
CocMarkdownLink { fg = c.sky, gui = "underline" } CocMarkdownLink { fg = c.sky, gui = "underline" },
NeogitNotificationError { LspDiagnosticsDefaultError },
NeogitNotificationWarning { LspDiagnosticsDefaultWarning },
NeogitNotificationInfo { LspDiagnosticsDefaultInformation },
} }
end) end)
-- stylua: ignore end -- stylua: ignore end