aboutsummaryrefslogtreecommitdiff
path: root/lua/config/plugins.lua
blob: 2d62c65e3c484376ca061a146eb50d0d11138140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- plugins that require no configuration
vim.pack.add({
	"https://github.com/tpope/vim-eunuch",
	"https://github.com/jessarcher/vim-heritage",
	"https://github.com/windwp/nvim-autopairs",
	"https://github.com/kylechui/nvim-surround",
	"https://github.com/f-person/auto-dark-mode.nvim",
	"https://github.com/ellisonleao/gruvbox.nvim",
	"https://github.com/MunifTanjim/nui.nvim",
	"https://github.com/nvim-neotest/nvim-nio",
	"https://github.com/nvim-lua/plenary.nvim",
})

require("nvim-autopairs").setup()
require("nvim-surround").setup()

vim.cmd([[colorscheme gruvbox]])