mirror of
https://github.com/webhooked/kanso.nvim.git
synced 2026-05-30 05:37:03 +02:00
Add new `minimal` config option that provides a cleaner, more focused color scheme with fewer distinct colors: - Variables/constants: white - Functions/methods: blue - Types: aqua - Keywords/statements: gray - Operators: yellow - Brackets/punctuation: gray - Properties/members: violet
60 lines
2.7 KiB
Lua
60 lines
2.7 KiB
Lua
local M = {}
|
|
---@param colors KansoColors
|
|
---@param config? KansoConfig
|
|
function M.setup(colors, config)
|
|
config = config or require("kanso").config
|
|
local theme = colors.theme
|
|
return {
|
|
-- ["@lsp.type.class"] = { link = "Structure" },
|
|
-- ["@lsp.type.decorator"] = { link = "Function" },
|
|
-- ["@lsp.type.enum"] = { link = "Structure" },
|
|
-- ["@lsp.type.enumMember"] = { link = "Constant" },
|
|
["@lsp.type.function"] = { link = "Function" },
|
|
-- ["@lsp.type.interface"] = { link = "Structure" },
|
|
["@lsp.type.macro"] = { link = "Macro" },
|
|
["@lsp.type.method"] = { link = "Function" },
|
|
["@lsp.type.namespace"] = { link = "@module" }, -- Structure
|
|
["@lsp.type.parameter"] = { link = "@variable.parameter" }, -- Identifier
|
|
-- ["@lsp.type.property"] = { link = "Identifier" },
|
|
-- ["@lsp.type.struct"] = { link = "Structure" },
|
|
["@lsp.type.type"] = { link = "Type" },
|
|
-- ["@lsp.type.typeParameter"] = { link = "TypeDef" },
|
|
["@lsp.type.variable"] = { fg = "none" }, -- Identifier
|
|
["@lsp.type.comment"] = { link = "Comment" }, -- Comment
|
|
|
|
["@lsp.type.const"] = { link = "Constant" },
|
|
["@lsp.type.comparison"] = { link = "Operator" },
|
|
["@lsp.type.bitwise"] = { link = "Operator" },
|
|
["@lsp.type.punctuation"] = { link = "Delimiter" },
|
|
|
|
["@lsp.type.selfParameter"] = { link = "@variable.builtin" },
|
|
-- ["@lsp.type.builtinConstant"] = { link = "@constant.builtin" },
|
|
["@lsp.type.builtinConstant"] = { link = "@constant.builtin" },
|
|
["@lsp.type.magicFunction"] = { link = "@function.builtin" },
|
|
|
|
["@lsp.mod.readonly"] = { link = "Constant" },
|
|
["@lsp.mod.typeHint"] = { link = "Type" },
|
|
-- ["@lsp.mod.defaultLibrary"] = { link = "Special" },
|
|
-- ["@lsp.mod.builtin"] = { link = "Special" },
|
|
|
|
["@lsp.typemod.operator.controlFlow"] = { link = "@keyword.exception" }, -- rust ? operator
|
|
["@lsp.type.lifetime"] = { link = "Operator" },
|
|
["@lsp.typemod.keyword.documentation"] = { link = "Special" },
|
|
["@lsp.type.decorator.rust"] = { link = "PreProc" },
|
|
|
|
["@lsp.typemod.variable.global"] = { link = "Constant" },
|
|
["@lsp.typemod.variable.static"] = { link = "Constant" },
|
|
["@lsp.typemod.variable.defaultLibrary"] = { link = "Special" },
|
|
|
|
["@lsp.typemod.function.builtin"] = { link = "@function.builtin" },
|
|
["@lsp.typemod.function.defaultLibrary"] = { link = "@function.builtin" },
|
|
["@lsp.typemod.method.defaultLibrary"] = { link = "@function.builtin" },
|
|
|
|
["@lsp.typemod.variable.injected"] = { link = "@variable" },
|
|
|
|
["@lsp.typemod.function.readonly"] = { link = "Function" },
|
|
}
|
|
end
|
|
|
|
return M
|
|
--vim: fdm=marker
|