diff options
Diffstat (limited to 'lua/lvim/plugin-loader.lua')
-rw-r--r-- | lua/lvim/plugin-loader.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/lvim/plugin-loader.lua b/lua/lvim/plugin-loader.lua index c2118edf..1f2f47f4 100644 --- a/lua/lvim/plugin-loader.lua +++ b/lua/lvim/plugin-loader.lua @@ -39,6 +39,10 @@ function plugin_loader.init(opts) snapshot["lazy.nvim"].commit, } end + + vim.schedule(function() + require("lvim.lsp").setup() + end) end vim.opt.runtimepath:append(lazy_install_dir) @@ -118,6 +122,10 @@ function plugin_loader.load(configurations) reset = false, }, }, + defaults = { + lazy = false, + version = nil, + }, readme = { root = join_paths(get_runtime_dir(), "lazy", "readme"), }, |