aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugin/autopairs.lua
blob: ab924aa3e46cb2a70545c57ac09b3d7fb41bd8d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require("nvim-autopairs").setup {
  fast_wrap = {
    map = "<M-e>",
    chars = { "<", "{", "[", "(", "\"", "'" },
    pattern = [=[[%"%"%>%]%)%}%,]]=],
    end_key = "$",
    keys = "qwertyuiopzxcvbnmasdfghjkl",
    check_comma = true,
    highlight = "Search",
    highlight_grey="Comment"
  }
}