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.
26 lines
777 B
Lua
26 lines
777 B
Lua
2 years ago
|
local M = {}
|
||
|
|
||
2 years ago
|
function M.get()
|
||
2 years ago
|
local error = cp.red
|
||
|
local warning = cp.yellow
|
||
|
local info = cp.sky
|
||
|
local hint = cp.teal
|
||
|
|
||
|
return {
|
||
2 years ago
|
-- These groups are for the coc.nvim, the documentation is here (https://github.com/neoclide/coc.nvim/blob/master/doc/coc.txt#L2365).
|
||
2 years ago
|
CocErrorHighlight = { fg = error },
|
||
|
CocErrorSign = { fg = error },
|
||
|
CocErrorVirtualText = { fg = error },
|
||
|
CocHintHighlight = { fg = hint },
|
||
|
CocHintSign = { fg = hint },
|
||
|
CocHintVirtualText = { fg = hint },
|
||
|
CocInfoHighlight = { fg = info },
|
||
|
CocInfoSign = { fg = info },
|
||
|
CocInfoVirtualText = { fg = info },
|
||
|
CocWarningHighlight = { fg = warning },
|
||
|
CocWarningSign = { fg = warning },
|
||
|
}
|
||
|
end
|
||
2 years ago
|
|
||
|
return M
|