blob: ac34066a8af91717b51d0dd7801b8b30493308c4 (
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/airblade/vim-gitgutter",
"https://github.com/ibhagwan/fzf-lua",
"https://github.com/jbyuki/one-small-step-for-vimkind",
"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",
})
|