15 lines
318 B
Lua
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
|