Skip to content

Commit

Permalink
fix(nvim): Attempting to fix a possible race condition between a few …
Browse files Browse the repository at this point in the history
…startup plugins.
  • Loading branch information
Alex Ford authored and Alex Ford committed Jun 22, 2024
1 parent 72e98a2 commit f1a32e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nvim/lua/config/lazy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ require("lazy").setup({
-- Import built-in LazyVim specs.
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
-- Override versions for lazy.nvim and LazyVim.
{ "folke/lazy.nvim", version = false },
{ "LazyVim/LazyVim", version = false },
{ "folke/lazy.nvim", version = false, lazy = false, priority = 10000 },
{ "LazyVim/LazyVim", version = false, lazy = false, priority = 10000 },
-- Import our own plugin specs.
{ import = "plugins" },
},
Expand Down
5 changes: 5 additions & 0 deletions nvim/lua/plugins/noice.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
return {
"folke/noice.nvim",
lazy = false,
priority = 10000,
}

0 comments on commit f1a32e2

Please sign in to comment.