-
Notifications
You must be signed in to change notification settings - Fork 0
/
chadrc.lua
30 lines (24 loc) · 903 Bytes
/
chadrc.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
-- Just an example, supposed to be placed in /lua/custom/
local M = {}
local override = require "custom.override"
-- make sure you maintain the structure of `core/default_config.lua` here,
-- example of changing theme:
M.ui = {
theme_toggle = { "onedark", "one_light" },
theme = "gruvbox", -- default theme
-- hl_add = require("custom.highlights").new_hlgroups,
-- hl_override = require("custom.highlights").overriden_hlgroups,
}
M.plugins = {
user = require "custom.plugins",
override = {
["kyazdani42/nvim-tree.lua"] = override.nvimtree,
["nvim-treesitter/nvim-treesitter"] = override.treesitter,
-- ["lukas-reineke/indent-blankline.nvim"] = override.blankline,
-- ["goolord/alpha-nvim"] = override.alpha,
["williamboman/mason.nvim"] = override.mason,
["NvChad/nvim-colorizer.lua"] = override.colorizer,
},
}
M.mappings = require "custom.mappings"
return M