Made more plugins be lazy loaded
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user