aboutsummaryrefslogtreecommitdiff
path: root/lua/config/plugins.lua
blob: ec4f26a955f44d9ab63ab69a0e8044252b7582d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- plugins that require no configuration
vim.pack.add({
	"https://github.com/tpope/vim-fugitive",
	"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",
})

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

vim.cmd([[colorscheme gruvbox]])