Back to astronvim.

This commit is contained in:
Bartek Stalewski 2024-03-08 15:42:43 +01:00
parent 0aed4edea5
commit e26650d344
No known key found for this signature in database
22 changed files with 2 additions and 4 deletions

23
_unused/nvchad/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