summaryrefslogtreecommitdiffstatshomepage
path: root/NvChad/lua/custom/chadrc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'NvChad/lua/custom/chadrc.lua')
-rw-r--r--NvChad/lua/custom/chadrc.lua30
1 files changed, 30 insertions, 0 deletions
diff --git a/NvChad/lua/custom/chadrc.lua b/NvChad/lua/custom/chadrc.lua
new file mode 100644
index 0000000..369fb0a
--- /dev/null
+++ b/NvChad/lua/custom/chadrc.lua
@@ -0,0 +1,30 @@
+local M = {}
+
+local plugin_conf = require "custom.plugins.configs"
+local userPlugins = require "custom.plugins"
+
+M.plugins = {
+ status = {
+ colorizer = true,
+ },
+
+ options = {
+ lspconfig = {
+ setup_lspconf = "custom.plugins.lspconfig",
+ },
+ },
+
+ default_plugin_config_replace = {
+ nvim_treesitter = plugin_conf.treesitter,
+ nvim_tree = plugin_conf.nvimtree,
+ },
+
+ install = userPlugins,
+}
+
+
+M.ui = {
+ theme = "tomorrow-night",
+}
+
+return M