1
0
Fork 0
dotfiles/.config/nvim/lua/plugins/misc/autopairs.lua

16 lines
318 B
Lua
Raw Normal View History

local M = { "windwp/nvim-autopairs" }
2024-01-25 00:10:11 +01:00
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