chadrc.lua (533B)
1 -- This file needs to have same structure as nvconfig.lua 2 -- https://github.com/NvChad/ui/blob/v3.0/lua/nvconfig.lua 3 -- Please read that file to know all available options :( 4 5 vim.wo.relativenumber = true 6 7 ---@type ChadrcConfig 8 local M = {} 9 10 M.base46 = { 11 theme = "gruvbox", 12 transparency = true, 13 14 -- hl_override = { 15 -- Comment = { italic = true }, 16 -- ["@comment"] = { italic = true }, 17 -- }, 18 } 19 20 -- M.nvdash = { load_on_startup = true } 21 -- M.ui = { 22 -- tabufline = { 23 -- lazyload = false 24 -- } 25 --} 26 27 return M