2022-01-09 04:37:18 +01:00
|
|
|
local plugin_settings = require("core.utils").load_config().plugins
|
|
|
|
local present, packer = pcall(require, plugin_settings.options.packer.init_file)
|
2021-08-12 13:58:03 +02:00
|
|
|
|
2021-08-22 09:49:15 +02:00
|
|
|
if not present then
|
2021-08-16 09:49:09 +02:00
|
|
|
return false
|
2021-07-15 17:46:45 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local use = packer.use
|
2021-07-09 05:44:04 +02:00
|
|
|
|
2021-08-16 09:49:09 +02:00
|
|
|
return packer.startup(function()
|
2021-11-13 18:37:20 +01:00
|
|
|
local override_req = require("core.utils").override_req
|
2021-09-14 04:21:35 +02:00
|
|
|
|
2021-08-22 09:49:15 +02:00
|
|
|
-- this is arranged on the basis of when a plugin starts
|
|
|
|
|
|
|
|
-- this is the nvchad core repo containing utilities for some features like theme swticher, no need to lazy load
|
2021-11-13 18:37:20 +01:00
|
|
|
use "Nvchad/extensions"
|
|
|
|
use "nvim-lua/plenary.nvim"
|
2021-08-26 11:40:26 +02:00
|
|
|
|
2021-08-16 09:49:09 +02:00
|
|
|
use {
|
|
|
|
"wbthomason/packer.nvim",
|
|
|
|
event = "VimEnter",
|
|
|
|
}
|
2021-06-01 20:28:24 +02:00
|
|
|
|
2021-08-16 09:49:09 +02:00
|
|
|
use {
|
2021-08-22 09:49:15 +02:00
|
|
|
"NvChad/nvim-base16.lua",
|
|
|
|
after = "packer.nvim",
|
|
|
|
config = function()
|
|
|
|
require("colors").init()
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"kyazdani42/nvim-web-devicons",
|
|
|
|
after = "nvim-base16.lua",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("nvim_web_devicons", "plugins.configs.icons", "setup"),
|
2021-08-16 09:49:09 +02:00
|
|
|
}
|
2021-07-26 11:36:32 +02:00
|
|
|
|
2021-08-17 08:42:33 +02:00
|
|
|
use {
|
2021-12-23 00:43:49 +01:00
|
|
|
"feline-nvim/feline.nvim",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.feline,
|
2021-08-17 08:42:33 +02:00
|
|
|
after = "nvim-web-devicons",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("feline", "plugins.configs.statusline", "setup"),
|
2021-08-17 08:42:33 +02:00
|
|
|
}
|
2021-08-22 09:49:15 +02:00
|
|
|
|
2021-08-16 09:49:09 +02:00
|
|
|
use {
|
2021-08-22 09:28:59 +02:00
|
|
|
"akinsho/bufferline.nvim",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.bufferline,
|
2021-08-26 11:40:26 +02:00
|
|
|
after = "nvim-web-devicons",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("bufferline", "plugins.configs.bufferline", "setup"),
|
2021-08-16 09:49:09 +02:00
|
|
|
setup = function()
|
2021-08-22 09:49:15 +02:00
|
|
|
require("core.mappings").bufferline()
|
2021-08-16 09:49:09 +02:00
|
|
|
end,
|
|
|
|
}
|
2021-07-09 05:44:04 +02:00
|
|
|
|
2021-08-22 09:49:15 +02:00
|
|
|
use {
|
|
|
|
"lukas-reineke/indent-blankline.nvim",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.blankline,
|
2021-08-22 09:49:15 +02:00
|
|
|
event = "BufRead",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("indent_blankline", "plugins.configs.others", "blankline"),
|
2021-08-16 09:49:09 +02:00
|
|
|
}
|
2021-06-27 17:29:39 +02:00
|
|
|
|
2021-08-16 09:49:09 +02:00
|
|
|
use {
|
|
|
|
"norcalli/nvim-colorizer.lua",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.colorizer,
|
2021-08-16 09:49:09 +02:00
|
|
|
event = "BufRead",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("nvim_colorizer", "plugins.configs.others", "colorizer"),
|
2021-08-16 09:49:09 +02:00
|
|
|
}
|
2021-06-01 20:28:24 +02:00
|
|
|
|
2021-08-16 09:49:09 +02:00
|
|
|
use {
|
|
|
|
"nvim-treesitter/nvim-treesitter",
|
|
|
|
event = "BufRead",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("nvim_treesitter", "plugins.configs.treesitter", "setup"),
|
2021-08-16 09:49:09 +02:00
|
|
|
}
|
2021-06-25 18:06:13 +02:00
|
|
|
|
2021-08-26 11:40:26 +02:00
|
|
|
-- git stuff
|
|
|
|
use {
|
|
|
|
"lewis6991/gitsigns.nvim",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.gitsigns,
|
2021-08-26 11:40:26 +02:00
|
|
|
opt = true,
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("gitsigns", "plugins.configs.others", "gitsigns"),
|
2021-08-26 11:40:26 +02:00
|
|
|
setup = function()
|
|
|
|
require("core.utils").packer_lazy_load "gitsigns.nvim"
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
|
2021-08-27 04:26:44 +02:00
|
|
|
-- lsp stuff
|
2021-09-10 12:10:54 +02:00
|
|
|
|
2021-08-16 09:49:09 +02:00
|
|
|
use {
|
2021-09-10 12:10:54 +02:00
|
|
|
"neovim/nvim-lspconfig",
|
2022-01-22 08:53:15 +01:00
|
|
|
module = "lspconfig",
|
2021-08-26 11:40:26 +02:00
|
|
|
opt = true,
|
|
|
|
setup = function()
|
2021-09-10 12:10:54 +02:00
|
|
|
require("core.utils").packer_lazy_load "nvim-lspconfig"
|
2021-10-01 16:04:18 +02:00
|
|
|
-- reload the current file so lsp actually starts for it
|
|
|
|
vim.defer_fn(function()
|
2021-10-02 07:29:23 +02:00
|
|
|
vim.cmd 'if &ft == "packer" | echo "" | else | silent! e %'
|
2021-10-01 16:04:18 +02:00
|
|
|
end, 0)
|
2021-08-26 11:40:26 +02:00
|
|
|
end,
|
2021-09-24 17:17:53 +02:00
|
|
|
config = override_req("lspconfig", "plugins.configs.lspconfig"),
|
2021-08-22 09:49:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"ray-x/lsp_signature.nvim",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.lspsignature,
|
2021-08-22 09:49:15 +02:00
|
|
|
after = "nvim-lspconfig",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("signature", "plugins.configs.others", "signature"),
|
2021-08-16 09:49:09 +02:00
|
|
|
}
|
2021-06-24 19:19:42 +02:00
|
|
|
|
2021-08-26 11:40:26 +02:00
|
|
|
use {
|
|
|
|
"andymass/vim-matchup",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.vim_matchup,
|
2021-08-26 11:40:26 +02:00
|
|
|
opt = true,
|
|
|
|
setup = function()
|
|
|
|
require("core.utils").packer_lazy_load "vim-matchup"
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
|
2021-08-16 09:49:09 +02:00
|
|
|
use {
|
2021-09-22 17:56:30 +02:00
|
|
|
"max397574/better-escape.nvim",
|
2021-12-16 08:32:49 +01:00
|
|
|
disable = not plugin_settings.status.better_escape,
|
2021-08-22 09:49:15 +02:00
|
|
|
event = "InsertEnter",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("better_escape", "plugins.configs.others", "better_escape"),
|
2021-08-16 09:49:09 +02:00
|
|
|
}
|
2021-08-07 07:55:23 +02:00
|
|
|
|
2021-08-27 03:14:58 +02:00
|
|
|
-- load luasnips + cmp related in insert mode only
|
|
|
|
|
2021-08-16 09:49:09 +02:00
|
|
|
use {
|
2021-09-07 03:37:39 +02:00
|
|
|
"rafamadriz/friendly-snippets",
|
2022-01-29 15:33:59 +01:00
|
|
|
module = "cmp_nvim_lsp",
|
2022-01-29 13:16:01 +01:00
|
|
|
disable = not (plugin_settings.status.cmp and plugin_settings.status.snippets),
|
2021-08-16 09:49:09 +02:00
|
|
|
event = "InsertEnter",
|
2021-09-07 03:37:39 +02:00
|
|
|
}
|
2022-01-29 15:33:59 +01:00
|
|
|
|
|
|
|
-- cmp by default loads after friendly snippets
|
|
|
|
-- if snippets are disabled -> cmp loads on insertEnter!
|
2021-09-07 03:37:39 +02:00
|
|
|
use {
|
|
|
|
"hrsh7th/nvim-cmp",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2022-01-29 15:33:59 +01:00
|
|
|
event = not plugin_settings.status.snippets and "InsertEnter",
|
2022-01-29 13:16:01 +01:00
|
|
|
after = plugin_settings.status.snippets and "friendly-snippets",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("nvim_cmp", "plugins.configs.cmp", "setup"),
|
2021-08-27 03:14:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
2021-08-27 04:41:46 +02:00
|
|
|
"L3MON4D3/LuaSnip",
|
2022-01-29 13:16:01 +01:00
|
|
|
disable = not (plugin_settings.status.cmp and plugin_settings.status.snippets),
|
2021-08-27 04:41:46 +02:00
|
|
|
wants = "friendly-snippets",
|
2022-01-29 15:33:59 +01:00
|
|
|
after = "nvim-cmp",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("luasnip", "plugins.configs.others", "luasnip"),
|
2021-08-27 03:14:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"saadparwaiz1/cmp_luasnip",
|
2022-01-29 13:16:01 +01:00
|
|
|
disable = not (plugin_settings.status.cmp and plugin_settings.status.snippets),
|
2022-01-11 14:13:09 +01:00
|
|
|
after = plugin_settings.options.cmp.lazy_load and "LuaSnip",
|
2021-08-27 03:14:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"hrsh7th/cmp-nvim-lua",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2022-01-29 13:16:01 +01:00
|
|
|
after = (plugin_settings.status.snippets and "cmp_luasnip") or "nvim-cmp",
|
2021-08-27 03:14:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"hrsh7th/cmp-nvim-lsp",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2022-01-29 15:33:59 +01:00
|
|
|
after = "cmp-nvim-lua",
|
2021-08-27 03:14:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"hrsh7th/cmp-buffer",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2022-01-26 15:47:44 +01:00
|
|
|
after = "cmp-nvim-lsp",
|
2021-08-27 03:14:58 +02:00
|
|
|
}
|
|
|
|
|
2021-09-29 14:46:43 +02:00
|
|
|
use {
|
|
|
|
"hrsh7th/cmp-path",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2022-01-29 15:33:59 +01:00
|
|
|
after = "cmp-buffer",
|
2021-09-29 14:46:43 +02:00
|
|
|
}
|
2021-08-16 09:49:09 +02:00
|
|
|
-- misc plugins
|
|
|
|
use {
|
|
|
|
"windwp/nvim-autopairs",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.autopairs,
|
2022-01-26 15:47:44 +01:00
|
|
|
after = plugin_settings.options.autopairs.loadAfter,
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("nvim_autopairs", "plugins.configs.others", "autopairs"),
|
2021-08-16 09:49:09 +02:00
|
|
|
}
|
2021-05-12 19:23:35 +02:00
|
|
|
|
2021-08-16 09:49:09 +02:00
|
|
|
use {
|
|
|
|
"glepnir/dashboard-nvim",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.dashboard,
|
2021-09-14 04:21:35 +02:00
|
|
|
config = override_req("dashboard", "plugins.configs.dashboard"),
|
2021-08-16 09:49:09 +02:00
|
|
|
setup = function()
|
2021-08-22 09:49:15 +02:00
|
|
|
require("core.mappings").dashboard()
|
2021-08-16 09:49:09 +02:00
|
|
|
end,
|
|
|
|
}
|
2021-06-26 04:10:23 +02:00
|
|
|
|
2021-08-22 09:49:15 +02:00
|
|
|
use {
|
2021-12-11 17:53:09 +01:00
|
|
|
"numToStr/Comment.nvim",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.comment,
|
2021-12-11 17:53:09 +01:00
|
|
|
module = "Comment",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("nvim_comment", "plugins.configs.others", "comment"),
|
2021-08-22 09:49:15 +02:00
|
|
|
setup = function()
|
|
|
|
require("core.mappings").comment()
|
2021-08-16 09:49:09 +02:00
|
|
|
end,
|
|
|
|
}
|
2021-06-24 19:21:39 +02:00
|
|
|
|
2021-08-22 09:49:15 +02:00
|
|
|
-- file managing , picker etc
|
2021-08-16 09:49:09 +02:00
|
|
|
use {
|
2021-08-22 09:49:15 +02:00
|
|
|
"kyazdani42/nvim-tree.lua",
|
2021-11-05 15:34:52 +01:00
|
|
|
disable = not plugin_settings.status.nvimtree,
|
2021-12-26 05:34:19 +01:00
|
|
|
-- only set "after" if lazy load is disabled and vice versa for "cmd"
|
|
|
|
after = not plugin_settings.options.nvimtree.lazy_load and "nvim-web-devicons",
|
2021-12-24 19:05:13 +01:00
|
|
|
cmd = plugin_settings.options.nvimtree.lazy_load and { "NvimTreeToggle", "NvimTreeFocus" },
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("nvim_tree", "plugins.configs.nvimtree", "setup"),
|
2021-08-22 09:49:15 +02:00
|
|
|
setup = function()
|
|
|
|
require("core.mappings").nvimtree()
|
2021-08-16 09:49:09 +02:00
|
|
|
end,
|
|
|
|
}
|
2021-06-26 04:22:48 +02:00
|
|
|
|
2021-08-22 09:45:25 +02:00
|
|
|
use {
|
|
|
|
"nvim-telescope/telescope.nvim",
|
2022-01-20 07:07:32 +01:00
|
|
|
module = "telescope",
|
2021-08-22 09:45:25 +02:00
|
|
|
cmd = "Telescope",
|
2022-01-21 12:49:49 +01:00
|
|
|
config = override_req("telescope", "plugins.configs.telescope", "setup"),
|
2021-08-22 09:45:25 +02:00
|
|
|
setup = function()
|
|
|
|
require("core.mappings").telescope()
|
|
|
|
end,
|
|
|
|
}
|
2021-11-15 18:21:51 +01:00
|
|
|
-- load user defined plugins
|
2022-01-07 15:28:05 +01:00
|
|
|
require("core.customPlugins").run(use)
|
2021-08-16 09:49:09 +02:00
|
|
|
end)
|