neovim light theme working 1
This commit is contained in:
@@ -1,13 +1,7 @@
|
||||
local M = {}
|
||||
|
||||
function M.get(C)
|
||||
return {
|
||||
NvimTreeFolderIcon = { fg = C.accent },
|
||||
NvimTreeRootFolder = { fg = C.text, bold = true },
|
||||
-- NvimTreeOpenedHL = { bg = C.surface },
|
||||
}
|
||||
return {}
|
||||
end
|
||||
|
||||
return M
|
||||
|
||||
|
||||
|
||||
@@ -2,10 +2,7 @@ local M = {}
|
||||
|
||||
function M.get(C)
|
||||
return {
|
||||
-- TelescopeBorder = { fg = C.muted, bg = C.green },
|
||||
TelescopePrompt = { fg = C.text, bg = C.green },
|
||||
-- TelescopePromptPrefix = { fg = C.accent, bg = C.red },
|
||||
-- TelescopeSelection = { bg = C.surface },
|
||||
TelescopeMatching = { fg = C.yellow, bg = C.none, bold = true },
|
||||
}
|
||||
end
|
||||
|
||||
|
||||
@@ -1,24 +1,20 @@
|
||||
local M = {}
|
||||
|
||||
function M.get(C)
|
||||
local theme = {
|
||||
["@comment"] = { fg = C.muted, italic = true },
|
||||
["@spell"] = { fg = C.syntax },
|
||||
["@markup"] = { fg = C.syntax },
|
||||
["@text"] = { fg = C.syntax },
|
||||
["@property"] = { fg = C.syntax },
|
||||
["@conceal"] = { fg = C.syntax },
|
||||
}
|
||||
return {
|
||||
["@constant.macro"] = { fg = C.syntax },
|
||||
["@function.method"] = { fg = C.syntax },
|
||||
["@type.qualifier"] = { fg = C.syntax },
|
||||
["@variable.parameter"] = { fg = C.syntax },
|
||||
["@variable"] = { fg = C.syntax },
|
||||
["@type.definition"] = { fg = C.syntax },
|
||||
["@markup.italic"] = { fg = C.syntax },
|
||||
["@markup.strong"] = { fg = C.syntax },
|
||||
["@markup.underline"] = { fg = C.syntax },
|
||||
["@markup.strikethrough"] = { fg = C.syntax },
|
||||
|
||||
for _, hl in ipairs(vim.fn.getcompletion("@", "highlight")) do
|
||||
if theme[hl] == nil then
|
||||
theme[hl] = { fg = C.syntax }
|
||||
end
|
||||
end
|
||||
|
||||
return theme
|
||||
["@_jsx_attribute"] = { link = "Constant" },
|
||||
}
|
||||
end
|
||||
|
||||
return M
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user