Made more plugins be lazy loaded
This commit is contained in:
@@ -56,7 +56,10 @@ local plugins = {
|
||||
end,
|
||||
},
|
||||
-- development
|
||||
"github/copilot.vim",
|
||||
{
|
||||
"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" },
|
||||
"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-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",
|
||||
|
||||
Reference in New Issue
Block a user