12345678910111213141516171819202122232425262728 |
- local M = {}
- local builtins = {
- "keymappings",
- "core.which-key",
- "core.gitsigns",
- "core.cmp",
- "core.dashboard",
- "core.dap",
- "core.terminal",
- "core.telescope",
- "core.treesitter",
- "core.nvimtree",
- "core.project",
- "core.bufferline",
- "core.autopairs",
- "core.comment",
- "core.lualine",
- }
- function M.config(config)
- for _, builtin_path in ipairs(builtins) do
- local builtin = require(builtin_path)
- builtin.config(config)
- end
- end
- return M
|