nvim config
This commit is contained in:
parent
cdfac4d089
commit
9051320319
13 changed files with 399 additions and 0 deletions
20
.dotfiles/nvchad/custom/chadrc.lua
Normal file
20
.dotfiles/nvchad/custom/chadrc.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
---@type ChadrcConfig
|
||||
local M = {}
|
||||
|
||||
-- Path to overriding theme and highlights files
|
||||
local highlights = require "custom.highlights"
|
||||
|
||||
M.ui = {
|
||||
theme = "tokyodark",
|
||||
theme_toggle = { "tokyodark", "tokyodark" },
|
||||
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue