Skip to content

Commit 60be0c7

Browse files
committed
fix: load event and config
1 parent 84a6943 commit 60be0c7

10 files changed

Lines changed: 9 additions & 14 deletions

File tree

nvim/lua/plugins/config/ui/scrollbar.lua

Lines changed: 0 additions & 1 deletion
This file was deleted.

nvim/lua/plugins/specs/editor/window-picker.lua

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@ return {
33
name = "window-picker",
44
event = "VeryLazy",
55
version = "2.*",
6-
config = function()
7-
require("window-picker").setup()
8-
end,
6+
config = true,
97
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
return {
22
"simeji/winresizer",
3+
event = { "VeryLazy" },
34
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
return {
22
"APZelos/blamer.nvim",
3+
event = { "VeryLazy" },
34
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
return {
22
"rhysd/git-messenger.vim",
3+
event = { "VeryLazy" },
34
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
return {
22
"lewis6991/gitsigns.nvim",
3+
event = { "VeryLazy" },
34
}

nvim/lua/plugins/specs/language/rust.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ return {
22
{
33
"mrcjkb/rustaceanvim",
44
version = "^8",
5-
lazy = false,
5+
event = { "VeryLazy" },
66
},
77
}

nvim/lua/plugins/specs/lsp/lspsaga.lua

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
return {
22
"nvimdev/lspsaga.nvim",
33
event = { "VeryLazy" },
4-
config = function()
5-
require("lspsaga").setup({})
6-
end,
4+
config = true,
75
dependencies = {
86
"nvim-treesitter/nvim-treesitter", -- optional
97
"nvim-tree/nvim-web-devicons", -- optional
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
return {
22
"kevinhwang91/nvim-hlslens",
3-
config = function()
4-
require("hlslens").setup()
5-
end,
3+
config = true,
64
}
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
return {
22
"petertriho/nvim-scrollbar",
33
event = { "VeryLazy" },
4-
config = function()
5-
require("plugins.config.ui.scrollbar")
6-
end,
4+
config = true,
75
}

0 commit comments

Comments
 (0)