mirror of https://github.com/sgoudham/nvim.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
937 B
Lua
28 lines
937 B
Lua
local M = {}
|
|
|
|
function M.get(cpt)
|
|
return {
|
|
DiagnosticError = { fg = cpt.error },
|
|
DiagnosticWarning = { fg = cpt.warning },
|
|
DiagnosticInformation = { fg = cpt.info },
|
|
DiagnosticHint = { fg = cpt.hint },
|
|
LspFloatWinNormal = { bg = cpt.bg_float },
|
|
LspFloatWinBorder = { fg = cpt.border_highlight },
|
|
LspSagaBorderTitle = { fg = cpt.cyan },
|
|
LspSagaHoverBorder = { fg = cpt.blue },
|
|
LspSagaRenameBorder = { fg = cpt.green },
|
|
LspSagaDefPreviewBorder = { fg = cpt.green },
|
|
LspSagaCodeActionBorder = { fg = cpt.blue },
|
|
LspSagaFinderSelection = { fg = cpt.bg_visual },
|
|
LspSagaCodeActionTitle = { fg = cpt.blue1 },
|
|
LspSagaCodeActionContent = { fg = cpt.purple },
|
|
LspSagaSignatureHelpBorder = { fg = cpt.red },
|
|
ReferencesCount = { fg = cpt.purple },
|
|
DefinitionCount = { fg = cpt.purple },
|
|
DefinitionIcon = { fg = cpt.blue },
|
|
ReferencesIcon = { fg = cpt.blue },
|
|
TargetWord = { fg = cpt.cyan },
|
|
}
|
|
end
|
|
return M
|