Files
nvimdots/lua/config/autopairs.lua
T
2026-05-29 14:52:27 +02:00

27 lines
512 B
Lua

local M = {}
M = {
disable_filetype = {
"TelescopePrompt",
"spectre_panel",
"snacks_picker_input",
},
disable_in_macro = true,
disable_in_visualblock = false,
disable_in_replace_mode = true,
ignored_next_char = [=[[%w%%%'%[%"%.%`%$]]=],
enable_moveright = true,
enable_afterquote = true,
enable_check_bracket_line = true,
enable_bracket_in_quote = true,
enable_abbr = false,
break_undo = true,
check_ts = false,
map_cr = true,
map_bs = true,
map_c_h = false,
map_c_w = false,
}
return M