blob: 01cbda470ecb8c57d4d7df0464b712dac21dcebd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
-- This file needs to have same structure as nvconfig.lua
-- https://github.com/NvChad/ui/blob/v2.5/lua/nvconfig.lua
-- Please read that file to know all available options :(
---@type ChadrcConfig
local M = {}
M.base46 = {
theme = "chadwal",
transparency = false,
hl_override = {
Comment = { italic = true },
["@comment"] = { italic = true },
},
}
return M
|