|
@@ -15,7 +15,7 @@ return {
|
|
{
|
|
{
|
|
"nvim-telescope/telescope.nvim",
|
|
"nvim-telescope/telescope.nvim",
|
|
config = function()
|
|
config = function()
|
|
- require("core.telescope").setup()
|
|
|
|
|
|
+ require("lvim.core.telescope").setup()
|
|
end,
|
|
end,
|
|
disable = not lvim.builtin.telescope.active,
|
|
disable = not lvim.builtin.telescope.active,
|
|
},
|
|
},
|
|
@@ -23,7 +23,7 @@ return {
|
|
{
|
|
{
|
|
"hrsh7th/nvim-cmp",
|
|
"hrsh7th/nvim-cmp",
|
|
config = function()
|
|
config = function()
|
|
- require("core.cmp").setup()
|
|
|
|
|
|
+ require("lvim.core.cmp").setup()
|
|
end,
|
|
end,
|
|
requires = {
|
|
requires = {
|
|
"L3MON4D3/LuaSnip",
|
|
"L3MON4D3/LuaSnip",
|
|
@@ -36,7 +36,7 @@ return {
|
|
run = function()
|
|
run = function()
|
|
-- cmp's config requires cmp to be installed to run the first time
|
|
-- cmp's config requires cmp to be installed to run the first time
|
|
if not lvim.builtin.cmp then
|
|
if not lvim.builtin.cmp then
|
|
- require("core.cmp").config()
|
|
|
|
|
|
+ require("lvim.core.cmp").config()
|
|
end
|
|
end
|
|
end,
|
|
end,
|
|
},
|
|
},
|
|
@@ -51,7 +51,7 @@ return {
|
|
"windwp/nvim-autopairs",
|
|
"windwp/nvim-autopairs",
|
|
-- event = "InsertEnter",
|
|
-- event = "InsertEnter",
|
|
config = function()
|
|
config = function()
|
|
- require("core.autopairs").setup()
|
|
|
|
|
|
+ require("lvim.core.autopairs").setup()
|
|
end,
|
|
end,
|
|
disable = not lvim.builtin.autopairs.active,
|
|
disable = not lvim.builtin.autopairs.active,
|
|
},
|
|
},
|
|
@@ -62,7 +62,7 @@ return {
|
|
branch = "0.5-compat",
|
|
branch = "0.5-compat",
|
|
-- run = ":TSUpdate",
|
|
-- run = ":TSUpdate",
|
|
config = function()
|
|
config = function()
|
|
- require("core.treesitter").setup()
|
|
|
|
|
|
+ require("lvim.core.treesitter").setup()
|
|
end,
|
|
end,
|
|
},
|
|
},
|
|
|
|
|
|
@@ -73,7 +73,7 @@ return {
|
|
-- cmd = "NvimTreeToggle",
|
|
-- cmd = "NvimTreeToggle",
|
|
-- commit = "fd7f60e242205ea9efc9649101c81a07d5f458bb",
|
|
-- commit = "fd7f60e242205ea9efc9649101c81a07d5f458bb",
|
|
config = function()
|
|
config = function()
|
|
- require("core.nvimtree").setup()
|
|
|
|
|
|
+ require("lvim.core.nvimtree").setup()
|
|
end,
|
|
end,
|
|
disable = not lvim.builtin.nvimtree.active,
|
|
disable = not lvim.builtin.nvimtree.active,
|
|
},
|
|
},
|
|
@@ -82,7 +82,7 @@ return {
|
|
"lewis6991/gitsigns.nvim",
|
|
"lewis6991/gitsigns.nvim",
|
|
|
|
|
|
config = function()
|
|
config = function()
|
|
- require("core.gitsigns").setup()
|
|
|
|
|
|
+ require("lvim.core.gitsigns").setup()
|
|
end,
|
|
end,
|
|
event = "BufRead",
|
|
event = "BufRead",
|
|
disable = not lvim.builtin.gitsigns.active,
|
|
disable = not lvim.builtin.gitsigns.active,
|
|
@@ -92,7 +92,7 @@ return {
|
|
{
|
|
{
|
|
"folke/which-key.nvim",
|
|
"folke/which-key.nvim",
|
|
config = function()
|
|
config = function()
|
|
- require("core.which-key").setup()
|
|
|
|
|
|
+ require("lvim.core.which-key").setup()
|
|
end,
|
|
end,
|
|
event = "BufWinEnter",
|
|
event = "BufWinEnter",
|
|
disable = not lvim.builtin.which_key.active,
|
|
disable = not lvim.builtin.which_key.active,
|
|
@@ -103,7 +103,7 @@ return {
|
|
"terrortylor/nvim-comment",
|
|
"terrortylor/nvim-comment",
|
|
event = "BufRead",
|
|
event = "BufRead",
|
|
config = function()
|
|
config = function()
|
|
- require("core.comment").setup()
|
|
|
|
|
|
+ require("lvim.core.comment").setup()
|
|
end,
|
|
end,
|
|
disable = not lvim.builtin.comment.active,
|
|
disable = not lvim.builtin.comment.active,
|
|
},
|
|
},
|
|
@@ -112,7 +112,7 @@ return {
|
|
{
|
|
{
|
|
"ahmedkhalf/project.nvim",
|
|
"ahmedkhalf/project.nvim",
|
|
config = function()
|
|
config = function()
|
|
- require("core.project").setup()
|
|
|
|
|
|
+ require("lvim.core.project").setup()
|
|
end,
|
|
end,
|
|
disable = not lvim.builtin.project.active,
|
|
disable = not lvim.builtin.project.active,
|
|
},
|
|
},
|
|
@@ -126,7 +126,7 @@ return {
|
|
"shadmansaleh/lualine.nvim",
|
|
"shadmansaleh/lualine.nvim",
|
|
-- "Lunarvim/lualine.nvim",
|
|
-- "Lunarvim/lualine.nvim",
|
|
config = function()
|
|
config = function()
|
|
- require("core.lualine").setup()
|
|
|
|
|
|
+ require("lvim.core.lualine").setup()
|
|
end,
|
|
end,
|
|
disable = not lvim.builtin.lualine.active,
|
|
disable = not lvim.builtin.lualine.active,
|
|
},
|
|
},
|
|
@@ -134,7 +134,7 @@ return {
|
|
{
|
|
{
|
|
"romgrk/barbar.nvim",
|
|
"romgrk/barbar.nvim",
|
|
config = function()
|
|
config = function()
|
|
- require("core.bufferline").setup()
|
|
|
|
|
|
+ require("lvim.core.bufferline").setup()
|
|
end,
|
|
end,
|
|
event = "BufWinEnter",
|
|
event = "BufWinEnter",
|
|
disable = not lvim.builtin.bufferline.active,
|
|
disable = not lvim.builtin.bufferline.active,
|
|
@@ -145,7 +145,7 @@ return {
|
|
"mfussenegger/nvim-dap",
|
|
"mfussenegger/nvim-dap",
|
|
-- event = "BufWinEnter",
|
|
-- event = "BufWinEnter",
|
|
config = function()
|
|
config = function()
|
|
- require("core.dap").setup()
|
|
|
|
|
|
+ require("lvim.core.dap").setup()
|
|
end,
|
|
end,
|
|
disable = not lvim.builtin.dap.active,
|
|
disable = not lvim.builtin.dap.active,
|
|
},
|
|
},
|
|
@@ -163,7 +163,7 @@ return {
|
|
"ChristianChiarulli/dashboard-nvim",
|
|
"ChristianChiarulli/dashboard-nvim",
|
|
event = "BufWinEnter",
|
|
event = "BufWinEnter",
|
|
config = function()
|
|
config = function()
|
|
- require("core.dashboard").setup()
|
|
|
|
|
|
+ require("lvim.core.dashboard").setup()
|
|
end,
|
|
end,
|
|
disable = not lvim.builtin.dashboard.active,
|
|
disable = not lvim.builtin.dashboard.active,
|
|
},
|
|
},
|
|
@@ -173,7 +173,7 @@ return {
|
|
"akinsho/toggleterm.nvim",
|
|
"akinsho/toggleterm.nvim",
|
|
event = "BufWinEnter",
|
|
event = "BufWinEnter",
|
|
config = function()
|
|
config = function()
|
|
- require("core.terminal").setup()
|
|
|
|
|
|
+ require("lvim.core.terminal").setup()
|
|
end,
|
|
end,
|
|
disable = not lvim.builtin.terminal.active,
|
|
disable = not lvim.builtin.terminal.active,
|
|
},
|
|
},
|