diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index d079b7c..ddfcdc0 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -24,7 +24,7 @@ require("lazy").setup({ defaults = { -- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup. -- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default. - lazy = false, + lazy = true, -- It's recommended to leave version=false for now, since a lot the plugin that support versioning, -- have outdated releases, which may break your Neovim install. version = false, -- always use the latest git commit diff --git a/lua/plugins/codelearn.lua b/lua/plugins/codelearn.lua index 9ef1810..1340189 100644 --- a/lua/plugins/codelearn.lua +++ b/lua/plugins/codelearn.lua @@ -1,7 +1,6 @@ return { { "kawre/leetcode.nvim", - lazy = true, cmd = "Leet", opts = { non_standalone = true, diff --git a/lua/plugins/collaborative.lua b/lua/plugins/collaborative.lua index c9c6708..859ffe3 100644 --- a/lua/plugins/collaborative.lua +++ b/lua/plugins/collaborative.lua @@ -1,7 +1,6 @@ return { { "jbyuki/instant.nvim", - lazy = true, cmd = { "InstantStartServer", "InstantStopServer", @@ -9,7 +8,6 @@ return { }, { "mistricky/codesnap.nvim", - lazy = true, build = "make", cmd = { "CodeSnap", diff --git a/lua/plugins/development.lua b/lua/plugins/development.lua index 9f815d9..662f2c6 100644 --- a/lua/plugins/development.lua +++ b/lua/plugins/development.lua @@ -2,7 +2,6 @@ return { -- Overall { "Zeioth/compiler.nvim", - lazy = true, cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" }, dependencies = { "stevearc/overseer.nvim", @@ -11,7 +10,6 @@ return { }, { "stevearc/overseer.nvim", - lazy = true, cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" }, opts = { task_list = { @@ -25,7 +23,6 @@ return { -- TS / JS { "dmmulroy/tsc.nvim", - lazy = true, cmd = "TSC", opts = { use_trouble_qflist = true, @@ -33,7 +30,6 @@ return { }, { "dmmulroy/ts-error-translator.nvim", - lazy = true, ft = { "ts", "tsx" }, }, } diff --git a/lua/plugins/file-management.lua b/lua/plugins/file-management.lua index 342ae18..5ddb852 100644 --- a/lua/plugins/file-management.lua +++ b/lua/plugins/file-management.lua @@ -1,7 +1,6 @@ return { { "stevearc/oil.nvim", - lazy = true, cmd = "Oil", opts = {}, dependencies = { "nvim-tree/nvim-web-devicons" }, diff --git a/lua/plugins/git.lua b/lua/plugins/git.lua index 742d198..a7021f0 100644 --- a/lua/plugins/git.lua +++ b/lua/plugins/git.lua @@ -1,7 +1,6 @@ return { { "f-person/git-blame.nvim", - lazy = true, event = "BufReadPre", opts = { date_format = "%x • %X", diff --git a/lua/plugins/indent.lua b/lua/plugins/indent.lua index df79d90..a0c6855 100644 --- a/lua/plugins/indent.lua +++ b/lua/plugins/indent.lua @@ -1,7 +1,6 @@ return { { "Darazaki/indent-o-matic", - lazy = true, event = "BufReadPre", }, } diff --git a/lua/plugins/markdown.lua b/lua/plugins/markdown.lua index 38d359d..179b138 100644 --- a/lua/plugins/markdown.lua +++ b/lua/plugins/markdown.lua @@ -1,12 +1,10 @@ return { { "opdavies/toggle-checkbox.nvim", - lazy = true, ft = "markdown", }, { "yujinyuz/gitpad.nvim", - lazy = true, opts = { title = "Note", border = "rounded", @@ -15,7 +13,6 @@ return { }, { "jmbuhr/otter.nvim", - lazy = true, ft = "markdown", dependencies = { "hrsh7th/nvim-cmp", -- optional, for completion @@ -25,11 +22,11 @@ return { }, { "3rd/image.nvim", - lazy = true, ft = { "markdown", "quarto", "vimwiki" }, dependencies = { { "vhyrro/luarocks.nvim", + lazy = true, priority = 1001, opts = { rocks = { "magick" }, diff --git a/lua/plugins/visualize.lua b/lua/plugins/visualize.lua index a4ba271..0fa0e84 100644 --- a/lua/plugins/visualize.lua +++ b/lua/plugins/visualize.lua @@ -1,7 +1,6 @@ return { { "neanias/everforest-nvim", - lazy = true, opts = { background = "medium", }, @@ -18,7 +17,6 @@ return { -- }, { "brenoprata10/nvim-highlight-colors", - lazy = true, event = "BufReadPre", opts = { render = "virtual", @@ -28,7 +26,6 @@ return { }, { "kevinhwang91/nvim-ufo", - lazy = true, event = "BufReadPre", }, }