From ae7523c0c3cf8a04d35a7a448554e7b8d3a074f8 Mon Sep 17 00:00:00 2001 From: Xander Swan Date: Wed, 3 Dec 2025 10:00:41 -0500 Subject: Goodest nvim conf --- .config/nvim/lua/plugin/autopairs.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .config/nvim/lua/plugin/autopairs.lua (limited to '.config/nvim/lua/plugin/autopairs.lua') diff --git a/.config/nvim/lua/plugin/autopairs.lua b/.config/nvim/lua/plugin/autopairs.lua new file mode 100644 index 0000000..c30a37d --- /dev/null +++ b/.config/nvim/lua/plugin/autopairs.lua @@ -0,0 +1,13 @@ + +require("nvim-autopairs").setup { + fast_wrap = { + map = "", + chars = { "{", "[", "(", "\"", "'" }, + pattern = [=[[%"%"%>%]%)%}%,]]=], + end_key = "$", + keys = "qwertyuiopzxcvbnmasdfghjkl", + check_comma = true, + highlight = "Search", + highlight_grey="Comment" + } +} -- cgit v1.3-2-g0d8e