refactor(config): moved loading of options, keymaps and autocmds to lazyvim.config

This commit is contained in:
Folke Lemaitre
2023-01-10 10:20:28 +01:00
parent 7b943822db
commit dcf520f3a7
4 changed files with 38 additions and 34 deletions

View File

@ -0,0 +1,6 @@
-- load options here, before lazy init while sourcing plugin modules
-- this is needed to make sure options will be correctly applied
-- after installing missing plugins
require("lazyvim.config").load("options")
return {}