add nvchad-config

This commit is contained in:
2024-03-07 15:46:59 +07:00
parent c804fb8d2b
commit 2af9ff9194
9 changed files with 295 additions and 0 deletions

21
nvchad-config/chadrc.lua Normal file
View File

@@ -0,0 +1,21 @@
---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
M.ui = {
theme = "one_light",
theme_toggle = { "one_light", "onedark" },
transparency = true,
hl_override = highlights.override,
hl_add = highlights.add,
}
M.plugins = "custom.plugins"
-- check core.mappings for table structure
M.mappings = require "custom.mappings"
return M