fix (#1145)
This commit is contained in:
parent
34fbb2e066
commit
ebe1512108
|
@ -1,4 +1,3 @@
|
||||||
local lazy_load = require("core.utils").packer_lazy_load
|
|
||||||
|
|
||||||
local plugins = {
|
local plugins = {
|
||||||
|
|
||||||
|
@ -73,7 +72,9 @@ local plugins = {
|
||||||
config = function()
|
config = function()
|
||||||
require("plugins.configs.others").gitsigns()
|
require("plugins.configs.others").gitsigns()
|
||||||
end,
|
end,
|
||||||
setup = lazy_load "gitsigns.nvim",
|
setup = function()
|
||||||
|
require("core.utils").packer_lazy_load "gitsigns.nvim"
|
||||||
|
end
|
||||||
},
|
},
|
||||||
|
|
||||||
-- lsp stuff
|
-- lsp stuff
|
||||||
|
@ -107,7 +108,9 @@ local plugins = {
|
||||||
|
|
||||||
["andymass/vim-matchup"] = {
|
["andymass/vim-matchup"] = {
|
||||||
opt = true,
|
opt = true,
|
||||||
setup = lazy_load "vim-matchup",
|
setup = function()
|
||||||
|
require("core.utils").packer_lazy_load "vim-matchup"
|
||||||
|
end
|
||||||
},
|
},
|
||||||
|
|
||||||
["max397574/better-escape.nvim"] = {
|
["max397574/better-escape.nvim"] = {
|
||||||
|
|
Loading…
Reference in New Issue