mirror of
https://github.com/craftzdog/solarized-osaka.nvim.git
synced 2026-09-10 07:16:21 -04:00
20 lines
506 B
Lua
20 lines
506 B
Lua
local M = {}
|
|
|
|
function M.get(c, opts)
|
|
-- stylua: ignore
|
|
return {
|
|
MiniDepsChangeAdded = "diffAdded",
|
|
MiniDepsChangeRemoved = "diffRemoved",
|
|
MiniDepsHint = "DiagnosticHint",
|
|
MiniDepsInfo = "DiagnosticInfo",
|
|
MiniDepsMsgBreaking = "DiagnosticWarn",
|
|
MiniDepsPlaceholder = "Comment",
|
|
MiniDepsTitle = "Title",
|
|
MiniDepsTitleError = "DiffDelete",
|
|
MiniDepsTitleSame = "DiffText",
|
|
MiniDepsTitleUpdate = "DiffAdd",
|
|
}
|
|
end
|
|
|
|
return M
|