mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-31 15:19:26 +02:00
[Feature] Encapsulate config logic (#1338)
* Define core/builtins, streamline status_color interface * Encapsulate configuration in its own module * Add fallback to lv-config.lua * Rectify settings loading order to allow overriding vim options * Move default-config into config/ module * replace uv.fs_stat with utils.is_file
This commit is contained in:
parent
f6c706ac0c
commit
00b895d9e9
9 changed files with 89 additions and 54 deletions
29
lua/core/builtins/init.lua
Normal file
29
lua/core/builtins/init.lua
Normal file
|
@ -0,0 +1,29 @@
|
|||
local M = {}
|
||||
|
||||
local builtins = {
|
||||
"keymappings",
|
||||
"core.which-key",
|
||||
"core.gitsigns",
|
||||
"core.compe",
|
||||
"core.dashboard",
|
||||
"core.dap",
|
||||
"core.terminal",
|
||||
"core.telescope",
|
||||
"core.treesitter",
|
||||
"core.nvimtree",
|
||||
"core.project",
|
||||
"core.bufferline",
|
||||
"core.autopairs",
|
||||
"core.comment",
|
||||
"core.lspinstall",
|
||||
"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
|
Loading…
Add table
Add a link
Reference in a new issue