Made more plugins be lazy loaded

This commit is contained in:
2023-08-30 23:54:29 +02:00
parent f3d34ca3d1
commit 4e07e36ca7
2 changed files with 18 additions and 3 deletions

View File

@@ -56,7 +56,10 @@ local plugins = {
end,
},
-- development
{
"github/copilot.vim",
event = "VimEnter"
},
{
"nvim-tree/nvim-tree.lua",
dependencies = { "nvim-tree/nvim-web-devicons" },
@@ -108,8 +111,18 @@ local plugins = {
ft = "markdown",
},
"numToStr/Comment.nvim",
{ "NeogitOrg/neogit", dependencies = "nvim-lua/plenary.nvim" },
{
"NeogitOrg/neogit",
dependencies = "nvim-lua/plenary.nvim",
config = function()
require("taken.plugins.lazy.neogit")
end,
cmd = "Neogit",
},
{
"sindrets/diffview.nvim",
cmd = "DiffviewOpen",
},
"windwp/nvim-autopairs",
{ "windwp/nvim-ts-autotag", dependencies = "nvim-treesitter" },
{
@@ -139,6 +152,8 @@ local plugins = {
config = function()
require("taken.plugins.lazy.neorg")
end,
cmd = "Neorg",
ft = "norg",
},
{
"NvChad/nvim-colorizer.lua",