Skip to content

Commit

Permalink
fix: lazyvim extras loading when no user plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
rafi committed May 22, 2024
1 parent 2ed633a commit c09d0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/rafi/config/lazy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ require('lazy').setup(vim.tbl_extend('keep', user_lazy_opts, {
spec = {
{ import = 'rafi.plugins.lazyvim' },
{ import = 'rafi.plugins' },
has_user_plugins and { import = 'plugins' } or nil,
{ import = 'lazyvim.plugins.xtras' },
has_user_plugins and { import = 'plugins' } or nil,
},
concurrency = vim.uv.available_parallelism() * 2,
defaults = { lazy = true, version = false },
Expand Down

0 comments on commit c09d0fb

Please sign in to comment.