2022-01-07 14:28:05 +00:00
|
|
|
-- This is an example chadrc file , its supposed to be placed in /lua/custom/
|
2021-11-19 02:14:06 +00:00
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
-- make sure you maintain the structure of `core/default_config.lua` here,
|
|
|
|
-- example of changing theme:
|
|
|
|
|
|
|
|
M.ui = {
|
2022-01-07 14:28:05 +00:00
|
|
|
theme = "onedark",
|
2021-11-19 02:14:06 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 07:21:46 +00:00
|
|
|
-- Install plugins
|
|
|
|
local userPlugins = require "custom.plugins" -- path to table
|
|
|
|
|
|
|
|
M.plugins = {
|
|
|
|
install = userPlugins,
|
|
|
|
}
|
|
|
|
|
|
|
|
-- NOTE: we heavily suggest using Packer's lazy loading (with the 'event','cmd' fields)
|
|
|
|
-- see: https://github.com/wbthomason/packer.nvim
|
|
|
|
-- https://nvchad.github.io/config/walkthrough
|
|
|
|
|
2021-11-19 02:14:06 +00:00
|
|
|
return M
|