Switch to nvchad.

This commit is contained in:
Bartek Stalewski 2023-10-14 14:48:19 +02:00
parent 4ffa1ed610
commit dae4bd3581
21 changed files with 253 additions and 2 deletions

23
_nvchad_custom/chadrc.lua Normal file
View file

@ -0,0 +1,23 @@
--@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
M.ui = {
theme = "monekai",
hl_override = highlights.override,
hl_add = highlights.add,
statusline = {
theme = "vscode_colored",
}
}
M.plugins = "custom.plugins"
-- check core.mappings for table structure
M.mappings = require "custom.mappings"
return M