Files
nvim/lua/chadrc.lua

25 lines
480 B
Lua
Raw Normal View History

2024-06-23 19:48:36 +05:30
-- This file needs to have same structure as nvconfig.lua
-- https://github.com/NvChad/ui/blob/v3.0/lua/nvconfig.lua
2024-09-07 14:34:33 +05:30
-- Please read that file to know all available options :(
2024-03-23 11:49:07 +05:30
2024-03-18 06:34:01 +05:30
---@type ChadrcConfig
2024-03-09 21:33:44 +05:30
local M = {}
M.base46 = {
2024-03-18 06:34:01 +05:30
theme = "onedark",
-- hl_override = {
-- Comment = { italic = true },
-- ["@comment"] = { italic = true },
-- },
2024-03-09 21:33:44 +05:30
}
2025-01-12 06:29:04 +05:30
-- M.nvdash = { load_on_startup = true }
-- M.ui = {
-- tabufline = {
-- lazyload = false
-- }
--}
2024-03-09 21:33:44 +05:30
return M