💄 massive revamp

This commit is contained in:
Sakamoto Hiroshi
2024-07-02 10:00:09 -05:00
parent a07f92783c
commit 103946319c
+47 -6
View File
@@ -1,19 +1,60 @@
-- This file needs to have same structure as nvconfig.lua -- This file needs to have same structure as nvconfig.lua
-- https://github.com/NvChad/NvChad/blob/v2.5/lua/nvconfig.lua -- https://github.com/NvChad/NvChad/blob/v2.5/lua/nvconfig.lua
---@type ChadrcConfig ---@type ChadrcConfig
local M = {} local M = {}
M.ui = { M.ui = {
theme = "bearded-arc", theme = "bearded-arc",
transparency = true, transparency = true,
statusline = { statusline = {
theme = "minimal", theme = "minimal",
}, },
-- hl_override = { hl_override = {
-- Comment = { italic = true }, Include = {
-- ["@comment"] = { italic = true }, italic = true,
-- }, },
-- for, while loops
Repeat = {
italic = true,
},
-- if statements
Conditional = {
italic = true,
},
-- class, with, as keywords
["@keyword"] = {
italic = true,
},
-- function keyword
["@keyword.function"] = {
italic = true,
},
-- return, yield keywords
["@keyword.return"] = {
bold = true,
},
-- function names
["@function"] = {
italic = false,
},
-- symbolic
["@operator"] = {
bold = true,
},
-- logical keywords
["@keyword.operator"] = {
italic = true,
},
-- function parameters
["@parameter"] = {
italic = true,
["@variable"] = {
italic = false,
},
},
},
} }
return M return M