11 lines
317 B
Lua
11 lines
317 B
Lua
return {
|
|
'windwp/nvim-autopairs',
|
|
event = 'InsertEnter',
|
|
opts = {
|
|
disable_filetype = { 'TelescopePrompt', 'spectre_panel', 'snacks_picker_input', 'vim' },
|
|
enable_afterquote = false,
|
|
enable_bracket_in_quote = false,
|
|
ignored_next_char = '[%w%.]', -- will ignore alphanumeric and `.` symbol
|
|
},
|
|
}
|