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
911 B
Lua
28 lines
911 B
Lua
3 years ago
|
local M = {}
|
||
|
|
||
2 years ago
|
function M.get()
|
||
3 years ago
|
return {
|
||
3 years ago
|
DiagnosticError = { fg = cp.red },
|
||
|
DiagnosticWarning = { fg = cp.yellow },
|
||
|
DiagnosticInformation = { fg = cp.blue },
|
||
3 years ago
|
DiagnosticHint = { fg = cp.rosewater },
|
||
3 years ago
|
LspFloatWinNormal = { bg = cp.crust },
|
||
3 years ago
|
LspFloatWinBorder = { fg = cp.blue },
|
||
|
LspSagaBorderTitle = { fg = cp.flamingo },
|
||
|
LspSagaHoverBorder = { fg = cp.blue },
|
||
|
LspSagaRenameBorder = { fg = cp.teal },
|
||
|
LspSagaDefPreviewBorder = { fg = cp.teal },
|
||
|
LspSagaCodeActionBorder = { fg = cp.blue },
|
||
3 years ago
|
LspSagaFinderSelection = { fg = cp.surface1 },
|
||
3 years ago
|
LspSagaCodeActionTitle = { fg = cp.blue },
|
||
|
LspSagaCodeActionContent = { fg = cp.lavender },
|
||
3 years ago
|
LspSagaSignatureHelpBorder = { fg = cp.red },
|
||
3 years ago
|
ReferencesCount = { fg = cp.lavender },
|
||
|
DefinitionCount = { fg = cp.lavender },
|
||
3 years ago
|
DefinitionIcon = { fg = cp.blue },
|
||
|
ReferencesIcon = { fg = cp.blue },
|
||
|
TargetWord = { fg = cp.flamingo },
|
||
3 years ago
|
}
|
||
3 years ago
|
end
|
||
|
return M
|