blob: 584fe8eb5f8b74aafed789b6373391943241a0b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--
-- 00-plugin.lua
--
-- Installs third-party plugins.
--
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-surround",
"https://github.com/windwp/nvim-autopairs",
})
|