2021-08-22 03:49:15 -04:00
|
|
|
local present, packer = pcall(require, "plugins.packerInit")
|
2021-08-12 07:58:03 -04:00
|
|
|
|
2021-08-22 03:49:15 -04:00
|
|
|
if not present then
|
2021-08-16 03:49:09 -04:00
|
|
|
return false
|
2021-07-15 11:46:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
local use = packer.use
|
2021-07-08 23:44:04 -04:00
|
|
|
|
2021-08-16 03:49:09 -04:00
|
|
|
return packer.startup(function()
|
2021-11-05 10:34:52 -04:00
|
|
|
local plugin_settings = require("core.utils").load_config().plugins
|
2021-11-13 12:37:20 -05:00
|
|
|
local override_req = require("core.utils").override_req
|
2021-09-13 22:21:35 -04:00
|
|
|
|
2021-08-22 03:49:15 -04: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 12:37:20 -05:00
|
|
|
use "Nvchad/extensions"
|
|
|
|
use "nvim-lua/plenary.nvim"
|
2021-08-26 05:40:26 -04:00
|
|
|
|
2021-08-16 03:49:09 -04:00
|
|
|
use {
|
|
|
|
"wbthomason/packer.nvim",
|
|
|
|
event = "VimEnter",
|
|
|
|
}
|
2021-06-01 14:28:24 -04:00
|
|
|
|
2021-08-16 03:49:09 -04:00
|
|
|
use {
|
2021-08-22 03:49:15 -04:00
|
|
|
"NvChad/nvim-base16.lua",
|
|
|
|
after = "packer.nvim",
|
|
|
|
config = function()
|
|
|
|
require("colors").init()
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"kyazdani42/nvim-web-devicons",
|
|
|
|
after = "nvim-base16.lua",
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("nvim_web_devicons", "plugins.configs.icons"),
|
2021-08-16 03:49:09 -04:00
|
|
|
}
|
2021-07-26 05:36:32 -04:00
|
|
|
|
2021-08-17 02:42:33 -04:00
|
|
|
use {
|
2021-08-26 01:18:13 -04:00
|
|
|
"famiu/feline.nvim",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.feline,
|
2021-08-17 02:42:33 -04:00
|
|
|
after = "nvim-web-devicons",
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("feline", "plugins.configs.statusline"),
|
2021-08-17 02:42:33 -04:00
|
|
|
}
|
2021-08-22 03:49:15 -04:00
|
|
|
|
2021-08-16 03:49:09 -04:00
|
|
|
use {
|
2021-08-22 03:28:59 -04:00
|
|
|
"akinsho/bufferline.nvim",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.bufferline,
|
2021-08-26 05:40:26 -04:00
|
|
|
after = "nvim-web-devicons",
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("bufferline", "plugins.configs.bufferline"),
|
2021-08-16 03:49:09 -04:00
|
|
|
setup = function()
|
2021-08-22 03:49:15 -04:00
|
|
|
require("core.mappings").bufferline()
|
2021-08-16 03:49:09 -04:00
|
|
|
end,
|
|
|
|
}
|
2021-07-08 23:44:04 -04:00
|
|
|
|
2021-08-22 03:49:15 -04:00
|
|
|
use {
|
|
|
|
"lukas-reineke/indent-blankline.nvim",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.blankline,
|
2021-08-22 03:49:15 -04:00
|
|
|
event = "BufRead",
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("indent_blankline", "(plugins.configs.others).blankline()"),
|
2021-08-16 03:49:09 -04:00
|
|
|
}
|
2021-06-27 11:29:39 -04:00
|
|
|
|
2021-08-16 03:49:09 -04:00
|
|
|
use {
|
|
|
|
"norcalli/nvim-colorizer.lua",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.colorizer,
|
2021-08-16 03:49:09 -04:00
|
|
|
event = "BufRead",
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("nvim_colorizer", "(plugins.configs.others).colorizer()"),
|
2021-08-16 03:49:09 -04:00
|
|
|
}
|
2021-06-01 14:28:24 -04:00
|
|
|
|
2021-08-16 03:49:09 -04:00
|
|
|
use {
|
|
|
|
"nvim-treesitter/nvim-treesitter",
|
|
|
|
event = "BufRead",
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("nvim_treesitter", "plugins.configs.treesitter"),
|
2021-08-16 03:49:09 -04:00
|
|
|
}
|
2021-06-25 12:06:13 -04:00
|
|
|
|
2021-08-26 05:40:26 -04:00
|
|
|
-- git stuff
|
|
|
|
use {
|
|
|
|
"lewis6991/gitsigns.nvim",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.gitsigns,
|
2021-08-26 05:40:26 -04:00
|
|
|
opt = true,
|
2021-11-17 00:30:57 -05:00
|
|
|
config = override_req("gitsigns", "(plugins.configs.others).gitsigns()"),
|
2021-08-26 05:40:26 -04:00
|
|
|
setup = function()
|
|
|
|
require("core.utils").packer_lazy_load "gitsigns.nvim"
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
|
2021-08-26 22:26:44 -04:00
|
|
|
-- lsp stuff
|
2021-09-10 06:10:54 -04:00
|
|
|
|
2021-08-16 03:49:09 -04:00
|
|
|
use {
|
2021-09-10 06:10:54 -04:00
|
|
|
"neovim/nvim-lspconfig",
|
2021-08-26 05:40:26 -04:00
|
|
|
opt = true,
|
|
|
|
setup = function()
|
2021-09-10 06:10:54 -04:00
|
|
|
require("core.utils").packer_lazy_load "nvim-lspconfig"
|
2021-10-01 10:04:18 -04:00
|
|
|
-- reload the current file so lsp actually starts for it
|
|
|
|
vim.defer_fn(function()
|
2021-10-02 01:29:23 -04:00
|
|
|
vim.cmd 'if &ft == "packer" | echo "" | else | silent! e %'
|
2021-10-01 10:04:18 -04:00
|
|
|
end, 0)
|
2021-08-26 05:40:26 -04:00
|
|
|
end,
|
2021-09-24 11:17:53 -04:00
|
|
|
config = override_req("lspconfig", "plugins.configs.lspconfig"),
|
2021-08-22 03:49:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"ray-x/lsp_signature.nvim",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.lspsignature,
|
2021-08-22 03:49:15 -04:00
|
|
|
after = "nvim-lspconfig",
|
2021-09-24 11:17:53 -04:00
|
|
|
config = override_req("signature", "(plugins.configs.others).signature()"),
|
2021-08-16 03:49:09 -04:00
|
|
|
}
|
2021-06-24 13:19:42 -04:00
|
|
|
|
2021-08-26 05:40:26 -04:00
|
|
|
use {
|
|
|
|
"andymass/vim-matchup",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.vim_matchup,
|
2021-08-26 05:40:26 -04:00
|
|
|
opt = true,
|
|
|
|
setup = function()
|
|
|
|
require("core.utils").packer_lazy_load "vim-matchup"
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
|
2021-08-16 03:49:09 -04:00
|
|
|
use {
|
2021-09-22 11:56:30 -04:00
|
|
|
"max397574/better-escape.nvim",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.esc_insertmode,
|
2021-08-22 03:49:15 -04:00
|
|
|
event = "InsertEnter",
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("better_escape", "(plugins.configs.others).better_escape()"),
|
2021-08-16 03:49:09 -04:00
|
|
|
}
|
2021-08-07 01:55:23 -04:00
|
|
|
|
2021-08-26 21:14:58 -04:00
|
|
|
-- load luasnips + cmp related in insert mode only
|
|
|
|
|
2021-08-16 03:49:09 -04:00
|
|
|
use {
|
2021-09-06 21:37:39 -04:00
|
|
|
"rafamadriz/friendly-snippets",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2021-08-16 03:49:09 -04:00
|
|
|
event = "InsertEnter",
|
2021-09-06 21:37:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"hrsh7th/nvim-cmp",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2021-09-06 21:37:39 -04:00
|
|
|
after = "friendly-snippets",
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("nvim_cmp", "plugins.configs.cmp"),
|
2021-08-26 21:14:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
2021-08-26 22:41:46 -04:00
|
|
|
"L3MON4D3/LuaSnip",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2021-08-26 22:41:46 -04:00
|
|
|
wants = "friendly-snippets",
|
|
|
|
after = "nvim-cmp",
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("luasnip", "(plugins.configs.others).luasnip()"),
|
2021-08-26 21:14:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"saadparwaiz1/cmp_luasnip",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2021-08-26 22:41:46 -04:00
|
|
|
after = "LuaSnip",
|
2021-08-26 21:14:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"hrsh7th/cmp-nvim-lua",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2021-08-26 21:14:58 -04:00
|
|
|
after = "cmp_luasnip",
|
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"hrsh7th/cmp-nvim-lsp",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2021-10-09 01:47:21 -04:00
|
|
|
after = "cmp-nvim-lua",
|
2021-08-26 21:14:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"hrsh7th/cmp-buffer",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2021-08-26 21:14:58 -04:00
|
|
|
after = "cmp-nvim-lsp",
|
|
|
|
}
|
|
|
|
|
2021-09-29 08:46:43 -04:00
|
|
|
use {
|
|
|
|
"hrsh7th/cmp-path",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.cmp,
|
2021-09-29 08:46:43 -04:00
|
|
|
after = "cmp-buffer",
|
|
|
|
}
|
2021-08-16 03:49:09 -04:00
|
|
|
-- misc plugins
|
|
|
|
use {
|
|
|
|
"windwp/nvim-autopairs",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.autopairs,
|
|
|
|
after = plugin_settings.options.autopairs.loadAfter,
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("nvim_autopairs", "(plugins.configs.others).autopairs()"),
|
2021-08-16 03:49:09 -04:00
|
|
|
}
|
2021-05-12 13:23:35 -04:00
|
|
|
|
2021-08-16 03:49:09 -04:00
|
|
|
use {
|
|
|
|
"glepnir/dashboard-nvim",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.dashboard,
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("dashboard", "plugins.configs.dashboard"),
|
2021-08-16 03:49:09 -04:00
|
|
|
setup = function()
|
2021-08-22 03:49:15 -04:00
|
|
|
require("core.mappings").dashboard()
|
2021-08-16 03:49:09 -04:00
|
|
|
end,
|
|
|
|
}
|
2021-06-25 22:10:23 -04:00
|
|
|
|
2021-08-22 03:49:15 -04:00
|
|
|
use {
|
|
|
|
"terrortylor/nvim-comment",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.comment,
|
2021-08-22 03:49:15 -04:00
|
|
|
cmd = "CommentToggle",
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("nvim_comment", "(plugins.configs.others).comment()"),
|
2021-08-22 03:49:15 -04:00
|
|
|
setup = function()
|
|
|
|
require("core.mappings").comment()
|
2021-08-16 03:49:09 -04:00
|
|
|
end,
|
|
|
|
}
|
2021-06-24 13:21:39 -04:00
|
|
|
|
2021-08-22 03:49:15 -04:00
|
|
|
-- file managing , picker etc
|
2021-08-16 03:49:09 -04:00
|
|
|
use {
|
2021-08-22 03:49:15 -04:00
|
|
|
"kyazdani42/nvim-tree.lua",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.nvimtree,
|
2021-08-24 06:07:38 -04:00
|
|
|
cmd = { "NvimTreeToggle", "NvimTreeFocus" },
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("nvim_tree", "plugins.configs.nvimtree"),
|
2021-08-22 03:49:15 -04:00
|
|
|
setup = function()
|
|
|
|
require("core.mappings").nvimtree()
|
2021-08-16 03:49:09 -04:00
|
|
|
end,
|
|
|
|
}
|
2021-06-25 22:22:48 -04:00
|
|
|
|
2021-08-22 03:45:25 -04:00
|
|
|
use {
|
|
|
|
"nvim-telescope/telescope.nvim",
|
2021-09-28 21:04:32 -04:00
|
|
|
module = "telescope",
|
2021-08-22 03:45:25 -04:00
|
|
|
cmd = "Telescope",
|
|
|
|
requires = {
|
|
|
|
{
|
|
|
|
"nvim-telescope/telescope-fzf-native.nvim",
|
|
|
|
run = "make",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"nvim-telescope/telescope-media-files.nvim",
|
2021-11-05 10:34:52 -04:00
|
|
|
disable = not plugin_settings.status.telescope_media,
|
2021-08-22 03:45:25 -04:00
|
|
|
setup = function()
|
|
|
|
require("core.mappings").telescope_media()
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
},
|
2021-09-13 22:21:35 -04:00
|
|
|
config = override_req("telescope", "plugins.configs.telescope"),
|
2021-08-22 03:45:25 -04:00
|
|
|
setup = function()
|
|
|
|
require("core.mappings").telescope()
|
|
|
|
end,
|
|
|
|
}
|
2021-11-15 12:21:51 -05:00
|
|
|
-- load user defined plugins
|
2021-08-24 15:45:59 -04:00
|
|
|
require("core.hooks").run("install_plugins", use)
|
2021-08-16 03:49:09 -04:00
|
|
|
end)
|