neovim-config/lua/chadrc.lua

17 lines
302 B
Lua
Raw Normal View History

2024-03-23 06:19:07 +00:00
-- This file needs to have same structure as nvconfig.lua
-- https://github.com/NvChad/NvChad/blob/v2.5/lua/nvconfig.lua
2024-03-18 01:04:01 +00:00
---@type ChadrcConfig
2024-03-09 16:03:44 +00:00
local M = {}
M.ui = {
2024-03-18 01:04:01 +00:00
theme = "onedark",
-- hl_override = {
-- Comment = { italic = true },
-- ["@comment"] = { italic = true },
-- },
2024-03-09 16:03:44 +00:00
}
return M