local commit = { bufferline = "305d4fd693b6ebcb9ac95cf16c0693ce64960162", cmp_buffer = "f83773e2f433a923997c5faad7ea689ec24d1785", cmp_luasnip = "d6f837f4e8fe48eeae288e638691b91b97d1737f", cmp_nvim_lsp = "ebdfc204afb87f15ce3d3d3f5df0b8181443b5ba", cmp_path = "466b6b8270f7ba89abd59f402c73f63c7331ff6e", comment = "1738ae5f67d1a76ce487edba5f3d79b8e80dd03b", dapinstall = "24923c3819a450a772bb8f675926d530e829665f", dashboard_nvim = "d82ddae95fd4dc4c3b7bbe87f09b1840fbf20ecb", fixcursorhold = "0e4e22d21975da60b0fd2d302285b3b603f9f71e", friendly_snippets = "2e575549910571ff5abb6b02178c69ad760a4e00", gitsigns = "420db8ddb909e0a5602146f101b059a6baa141bc", lua_dev = "a0ee77789d9948adce64d98700cc90cecaef88d5", lualine = "6a3d367449fac10ed9d9ee356e8f02ba1ca941f6", luasnip = "c1d07078dce0c9631e89a299e4b4a93334650a7b", nlsp_settings = "f966b88ac253a24c4816d1b81b15ec283c26917a", null_ls = "f95d51533b240f2946e0a22269ade7dea9bb90a3", nvim_autopairs = "784398a8f184431fd4329f20b0e4f52e87707bbd", nvim_cmp = "ba47440a97710d0f4f63eea2bc196fe17297e4ae", nvim_dap = "331b26961e40fca7e09db5e80eb7b4d658a4e49e", nvim_lsp_installer = "1dd5a25a61c38d3b5c72f74a3358d97764ad79e1", nvim_lspconfig = "0da0023374a2acbab25e538383006f1404bf3c0d", nvim_notify = "27f3176b950dc803b61c29bd007e140c232544e5", nvim_tree = "121f5c90374c6ba8a3fb33787ca508e8694b7d02", nvim_treesitter = "f476df31af4d6d4bbb6a34b3ca870564cfc39b83", nvim_ts_context_commentstring = "097df33c9ef5bbd3828105e4bee99965b758dc3f", nvim_web_devicons = "e3294f687626b40754bb40ac2d636d166098b2fb", packer = "66d67bb99288616b9fb6cc2ad9a40919f64a5e7d", plenary = "66472128c3191b786966798fc956a689705ab1be", popup = "b7404d35d5d3548a82149238289fa71f7f6de4ac", project = "cef52b8da07648b750d7f1e8fb93f12cb9482988", schemastore = "c0c11c832fa812174cd196c723b97c493f528b5c", structlog = "6f1403a192791ff1fa7ac845a73de9e860f781f1", telescope = "df0b35c8bc0944164828ccba8ea17941423c6725", telescope_fzf_native = "b8662b076175e75e6497c59f3e2799b879d7b954", toggleterm = "d2ceb2ca3268d09db3033b133c0ee4642e07f059", which_key = "28d2bd129575b5e9ebddd88506601290bb2bb221", } 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, }, { "akinsho/bufferline.nvim", commit = commit.bufferline, 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, }, -- SchemaStore { "b0o/schemastore.nvim", commit = commit.schemastore, }, }