summaryrefslogtreecommitdiffstats
path: root/plugin/00-plugin.lua
blob: 6812cedef86751e07bb0060b9b3f987a08c66a33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--[[ 00-plugin.lua — install third-party plugins via vim.pack.

Plugins are pinned in nvim-pack-lock.json; this file must load first so later plugin/ files can
require() them.
]]

vim.pack.add({
	"https://github.com/ibhagwan/fzf-lua",
	"https://github.com/jbyuki/one-small-step-for-vimkind",
	"https://github.com/lewis6991/gitsigns.nvim",
	"https://github.com/maxmx03/solarized.nvim",
	"https://github.com/MeanderingProgrammer/render-markdown.nvim",
	"https://github.com/mfussenegger/nvim-dap",
	"https://github.com/neovim/nvim-lspconfig",
	"https://github.com/nvim-lualine/lualine.nvim",
	"https://github.com/nvim-tree/nvim-web-devicons",
	"https://github.com/nvim-treesitter/nvim-treesitter",
	"https://github.com/qadzek/link.vim",
	"https://github.com/tpope/vim-fugitive",
	"https://github.com/tpope/vim-surround",
	"https://github.com/windwp/nvim-autopairs",
})