15 lines
355 B
Lua
15 lines
355 B
Lua
return {
|
|
'windwp/nvim-autopairs',
|
|
config = function()
|
|
require('nvim-autopairs').setup({
|
|
check_ts = true,
|
|
ts_config = {
|
|
lua = { 'string', 'source' },
|
|
javascript = { 'string', 'template_string' },
|
|
java = false,
|
|
},
|
|
disable_filetype = { 'TelescopePrompt', 'vim' },
|
|
fast_wrap = {},
|
|
})
|
|
end,
|
|
}
|