-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlspsaga.lua
executable file
·30 lines (27 loc) · 1.08 KB
/
lspsaga.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
local M = {}
M.url = "https://github.com/glepnir/lspsaga.nvim"
---@type nekonight.HighlightsFn
function M.get(c, opts)
-- stylua: ignore
return {
DefinitionCount = { fg = c.purple },
DefinitionIcon = { fg = c.blue },
DiagnosticInformation = "DiagnosticInfo",
DiagnosticWarning = "DiagnosticWarn",
LspFloatWinBorder = { fg = c.border_highlight },
LspFloatWinNormal = { bg = c.bg_float },
LspSagaBorderTitle = { fg = c.cyan },
LspSagaCodeActionBorder = { fg = c.blue },
LspSagaCodeActionContent = { fg = c.purple },
LspSagaCodeActionTitle = { fg = c.blue1 },
LspSagaDefPreviewBorder = { fg = c.green },
LspSagaFinderSelection = { fg = c.bg_visual },
LspSagaHoverBorder = { fg = c.blue },
LspSagaRenameBorder = { fg = c.green },
LspSagaSignatureHelpBorder = { fg = c.red },
ReferencesCount = { fg = c.purple },
ReferencesIcon = { fg = c.blue },
TargetWord = { fg = c.cyan },
}
end
return M