1
0
Fork 0
dotfiles/.config/nvim/lua/plugins/misc/autopairs.lua
2024-01-25 00:10:11 +01:00

15 lines
318 B
Lua

local M = { "windwp/nvim-autopairs" }
M.event = { "BufReadPost", "BufNewFile" }
M.opts = {
check_ts = true,
disable_filetype = { "TelescopePrompt", "vim" },
ts_config = {
lua = { "string", "source" },
javascript = { "string", "template_string" },
java = false,
},
}
return M