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