diff --git a/lua/plugins/development.lua b/lua/plugins/development.lua index 1edb313..9f815d9 100644 --- a/lua/plugins/development.lua +++ b/lua/plugins/development.lua @@ -2,6 +2,7 @@ return { -- Overall { "Zeioth/compiler.nvim", + lazy = true, cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" }, dependencies = { "stevearc/overseer.nvim", @@ -10,6 +11,7 @@ return { }, { "stevearc/overseer.nvim", + lazy = true, cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" }, opts = { task_list = { @@ -24,7 +26,6 @@ return { { "dmmulroy/tsc.nvim", lazy = true, - event = "BufReadPre", cmd = "TSC", opts = { use_trouble_qflist = true, @@ -33,7 +34,6 @@ return { { "dmmulroy/ts-error-translator.nvim", lazy = true, - event = "LazyFile", ft = { "ts", "tsx" }, }, } diff --git a/lua/plugins/indent.lua b/lua/plugins/indent.lua index 1bcdf97..df79d90 100644 --- a/lua/plugins/indent.lua +++ b/lua/plugins/indent.lua @@ -2,6 +2,6 @@ return { { "Darazaki/indent-o-matic", lazy = true, - event = "InsertEnter", + event = "BufReadPre", }, } diff --git a/lua/plugins/markdown.lua b/lua/plugins/markdown.lua index 80728f8..d65be8c 100644 --- a/lua/plugins/markdown.lua +++ b/lua/plugins/markdown.lua @@ -7,7 +7,6 @@ return { { "yujinyuz/gitpad.nvim", lazy = true, - event = "VeryLazy", opts = { title = "Note", border = "rounded", diff --git a/lua/plugins/visualize.lua b/lua/plugins/visualize.lua index 3d61e9d..a4ba271 100644 --- a/lua/plugins/visualize.lua +++ b/lua/plugins/visualize.lua @@ -19,7 +19,7 @@ return { { "brenoprata10/nvim-highlight-colors", lazy = true, - event = "VeryLazy", + event = "BufReadPre", opts = { render = "virtual", virtual_symbol = "", @@ -29,6 +29,6 @@ return { { "kevinhwang91/nvim-ufo", lazy = true, - event = "VeryLazy", + event = "BufReadPre", }, }