-- Just an example, supposed to be placed in /lua/custom/ local M = {} -- make sure you maintain the structure of `core/default_config.lua` here, -- example of changing theme: M.ui = { theme = "rxyhn", } M.plugins = { ["glepnir/dashboard-nvim"] = { disable = false, config = function() require "custom.dash" end }, ['folke/which-key.nvim'] = {disable = false}, ['goolord/alpha-nvim'] = {disable = true}, ['kylechui/nvim-surround'] = { tag = "*", config = function() require("nvim-surround").setup({ }) end }, } return M