123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- local commit = {
- barbar = "6e638309efcad2f308eb9c5eaccf6f62b794bbab",
- cmp_buffer = "f83773e2f433a923997c5faad7ea689ec24d1785",
- cmp_luasnip = "d6f837f4e8fe48eeae288e638691b91b97d1737f",
- cmp_nvim_lsp = "ebdfc204afb87f15ce3d3d3f5df0b8181443b5ba",
- cmp_path = "4d58224e315426e5ac4c5b218ca86cab85f80c79",
- comment = "90df2f87c0b17193d073d1f72cea2e528e5b162d",
- dapinstall = "568d946a99edb6780912cb39ca68c368516cd853",
- dashboard_nvim = "d82ddae95fd4dc4c3b7bbe87f09b1840fbf20ecb",
- fixcursorhold = "0e4e22d21975da60b0fd2d302285b3b603f9f71e",
- friendly_snippets = "b654034902280a9d1f4444f145fd7fa4c9f6d9cb",
- gitsigns = "f4648dcc055a10573f36e83343592824155ab466",
- lua_dev = "03a44ec6a54b0a025a633978e8541584a02e46d9",
- lualine = "70691ae350fdbe1f15758e3b8e2973742a7967a9",
- luasnip = "0222ee63c9e4b80e6000d064f8efd8edcc6d0c48",
- nlsp_settings = "3a3942b5d1da30e3ca0dc431aada3191c5952054",
- null_ls = "567daff80cc629302e1ac196f74d0dec8738249a",
- nvim_autopairs = "97e454ce9b1371373105716d196c1017394bc947",
- nvim_cmp = "76d92fca643d53b735ddaf07e0da293949973764",
- nvim_dap = "08349ab5da2148965deb2e778065017059bff584",
- nvim_lsp_installer = "7a4f43beaf579f48b190e4a0784d4b3317157495",
- nvim_lspconfig = "5dc61fa6bf837b91c4de2ed95ba6c840e47d25ac",
- nvim_notify = "15f52efacd169ea26b0f4070451d3ea53f98cd5a",
- nvim_tree = "0a2f6b0b6ba558a88c77a6b262af647760e6eca8",
- nvim_treesitter = "a76e1eb89d57e25cedbc71d6bf8e2d2c23d5d85b",
- nvim_ts_context_commentstring = "097df33c9ef5bbd3828105e4bee99965b758dc3f",
- nvim_web_devicons = "ac71ca88b1136e1ecb2aefef4948130f31aa40d1",
- packer = "851c62c5ecd3b5adc91665feda8f977e104162a5",
- plenary = "563d9f6d083f0514548f2ac4ad1888326d0a1c66",
- popup = "b7404d35d5d3548a82149238289fa71f7f6de4ac",
- project = "71d0e23dcfc43cfd6bb2a97dc5a7de1ab47a6538",
- structlog = "6f1403a192791ff1fa7ac845a73de9e860f781f1",
- telescope = "860cc656632dbee8d817b1dfa5e6a5a73265286f",
- telescope_fzf_native = "b8662b076175e75e6497c59f3e2799b879d7b954",
- toggleterm = "f23866b8fbb0703be4e15d50c814ffe496242a67",
- which_key = "387fd676d3f9b419d38890820f6e262dc0fadb46",
- }
- return {
- -- Packer can manage itself as an optional plugin
- { "wbthomason/packer.nvim", commit = commit.packer },
- { "neovim/nvim-lspconfig", commit = commit.nvim_lspconfig },
- { "tamago324/nlsp-settings.nvim", commit = commit.nlsp_settings },
- {
- "jose-elias-alvarez/null-ls.nvim",
- commit = commit.null_ls,
- },
- { "antoinemadec/FixCursorHold.nvim", commit = commit.fixcursorhold }, -- Needed while issue https://github.com/neovim/neovim/issues/12587 is still open
- {
- "williamboman/nvim-lsp-installer",
- commit = commit.nvim_lsp_installer,
- },
- {
- "rcarriga/nvim-notify",
- commit = commit.nvim_notify,
- disable = not lvim.builtin.notify.active,
- config = function()
- require("lvim.core.notify").setup()
- end,
- event = "BufRead",
- },
- { "Tastyep/structlog.nvim", commit = commit.structlog },
- { "nvim-lua/popup.nvim", commit = commit.popup },
- { "nvim-lua/plenary.nvim", commit = commit.plenary },
- -- Telescope
- {
- "nvim-telescope/telescope.nvim",
- commit = commit.telescope,
- config = function()
- require("lvim.core.telescope").setup()
- end,
- disable = not lvim.builtin.telescope.active,
- },
- {
- "nvim-telescope/telescope-fzf-native.nvim",
- commit = commit.telescope_fzf_native,
- run = "make",
- disable = not lvim.builtin.telescope.active,
- },
- -- Install nvim-cmp, and buffer source as a dependency
- {
- "hrsh7th/nvim-cmp",
- commit = commit.nvim_cmp,
- config = function()
- if lvim.builtin.cmp then
- require("lvim.core.cmp").setup()
- end
- end,
- requires = {
- "L3MON4D3/LuaSnip",
- "rafamadriz/friendly-snippets",
- },
- },
- {
- "rafamadriz/friendly-snippets",
- commit = commit.friendly_snippets,
- },
- {
- "L3MON4D3/LuaSnip",
- config = function()
- require("luasnip/loaders/from_vscode").lazy_load()
- end,
- commit = commit.luasnip,
- },
- {
- "hrsh7th/cmp-nvim-lsp",
- commit = commit.cmp_nvim_lsp,
- },
- {
- "saadparwaiz1/cmp_luasnip",
- commit = commit.cmp_luasnip,
- },
- {
- "hrsh7th/cmp-buffer",
- commit = commit.cmp_buffer,
- },
- {
- "hrsh7th/cmp-path",
- commit = commit.cmp_path,
- },
- {
- "folke/lua-dev.nvim",
- module = "lua-dev",
- commit = commit.lua_dev,
- },
- -- Autopairs
- {
- "windwp/nvim-autopairs",
- commit = commit.nvim_autopairs,
- -- event = "InsertEnter",
- config = function()
- require("lvim.core.autopairs").setup()
- end,
- disable = not lvim.builtin.autopairs.active,
- },
- -- Treesitter
- {
- "nvim-treesitter/nvim-treesitter",
- commit = commit.nvim_treesitter,
- branch = vim.fn.has "nvim-0.6" == 1 and "master" or "0.5-compat",
- -- run = ":TSUpdate",
- config = function()
- require("lvim.core.treesitter").setup()
- end,
- },
- {
- "JoosepAlviste/nvim-ts-context-commentstring",
- commit = commit.nvim_ts_context_commentstring,
- event = "BufReadPost",
- },
- -- NvimTree
- {
- "kyazdani42/nvim-tree.lua",
- -- event = "BufWinOpen",
- -- cmd = "NvimTreeToggle",
- commit = commit.nvim_tree,
- config = function()
- require("lvim.core.nvimtree").setup()
- end,
- disable = not lvim.builtin.nvimtree.active,
- },
- {
- "lewis6991/gitsigns.nvim",
- commit = commit.gitsigns,
- config = function()
- require("lvim.core.gitsigns").setup()
- end,
- event = "BufRead",
- disable = not lvim.builtin.gitsigns.active,
- },
- -- Whichkey
- {
- "folke/which-key.nvim",
- commit = commit.which_key,
- config = function()
- require("lvim.core.which-key").setup()
- end,
- event = "BufWinEnter",
- disable = not lvim.builtin.which_key.active,
- },
- -- Comments
- {
- "numToStr/Comment.nvim",
- commit = commit.comment,
- event = "BufRead",
- config = function()
- require("lvim.core.comment").setup()
- end,
- disable = not lvim.builtin.comment.active,
- },
- -- project.nvim
- {
- "ahmedkhalf/project.nvim",
- commit = commit.project,
- config = function()
- require("lvim.core.project").setup()
- end,
- disable = not lvim.builtin.project.active,
- },
- -- Icons
- { "kyazdani42/nvim-web-devicons", commit = commit.nvim_web_devicons },
- -- Status Line and Bufferline
- {
- -- "hoob3rt/lualine.nvim",
- "nvim-lualine/lualine.nvim",
- commit = commit.lualine,
- -- "Lunarvim/lualine.nvim",
- config = function()
- require("lvim.core.lualine").setup()
- end,
- disable = not lvim.builtin.lualine.active,
- },
- {
- "romgrk/barbar.nvim",
- commit = commit.barbar,
- config = function()
- require("lvim.core.bufferline").setup()
- end,
- event = "BufWinEnter",
- disable = not lvim.builtin.bufferline.active,
- },
- -- Debugging
- {
- "mfussenegger/nvim-dap",
- commit = commit.nvim_dap,
- -- event = "BufWinEnter",
- config = function()
- require("lvim.core.dap").setup()
- end,
- disable = not lvim.builtin.dap.active,
- },
- -- Debugger management
- {
- "Pocco81/DAPInstall.nvim",
- commit = commit.dapinstall,
- -- event = "BufWinEnter",
- -- event = "BufRead",
- disable = not lvim.builtin.dap.active,
- },
- -- Dashboard
- {
- "ChristianChiarulli/dashboard-nvim",
- event = "BufWinEnter",
- config = function()
- require("lvim.core.dashboard").setup()
- end,
- disable = not lvim.builtin.dashboard.active,
- },
- -- Terminal
- {
- "akinsho/toggleterm.nvim",
- commit = commit.toggleterm,
- event = "BufWinEnter",
- config = function()
- require("lvim.core.terminal").setup()
- end,
- disable = not lvim.builtin.terminal.active,
- },
- }
|