blob: 64c379d180e94b869d227e4a72c797fe4b146f55 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
local status_ok, autopairs = pcall(require, "ultimate-autopair")
if not status_ok then
return
end
autopairs.setup {
ignored_next_char = string.gsub("!@#$%^&*()_+", "%s+", "")
}
|