Files
dotfiles/profiles/desktop/.config/nvim/lua/plugins/nvim-autopairs.lua
2026-02-13 04:20:30 +01:00

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
},
}