summaryrefslogtreecommitdiff
path: root/autopairs.lua
blob: bc0f7feecc53fa66a4a853338bfdba49e0ec10d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
return {
	{
		"windwp/nvim-autopairs",
		event = "InsertEnter", -- lazy-load
		config = function()
			require("nvim-autopairs").setup({
				disable_filetype = { "tex" }, -- completely disable in LaTeX files
			})
		end,
	},
}