diff options
author | christianchiarulli <[email protected]> | 2021-07-18 14:10:19 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-18 14:10:19 -0400 |
commit | b797c2398fafaaa3e5f81d9e1630a41240a31bf8 (patch) | |
tree | 3dd23047f7fd09a4b13d4728696751b4f685f3fe /init.lua | |
parent | a3f3f3b60cf675e3a80d3285dff136d193cfbb53 (diff) | |
parent | 6f9c521e227b1c4d3741cb73ee0a9598be73ef10 (diff) |
Merge branch 'rolling' of github.com:ChristianChiarulli/LunarVim into rolling
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,12 +1,17 @@ require "default-config" -require "keymappings" local status_ok, error = pcall(vim.cmd, "luafile " .. CONFIG_PATH .. "/lv-config.lua") if not status_ok then print "something is wrong with your lv-config" print(error) end -require "plugins" + +require "keymappings" + +local plugins = require "plugins" +local plugin_loader = require("plugin-loader").init() +plugin_loader:load { plugins, O.user_plugins } vim.g.colors_name = O.colorscheme -- Colorscheme must get called after plugins are loaded or it will break new installs. + require "settings" require "lv-utils" |