diff options
author | tdback <tyler@tdback.net> | 2024-12-04 18:48:24 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2024-12-04 18:48:24 -0500 |
commit | 3b2163b821f4dbf1003804b9b19fd276dc4bc350 (patch) | |
tree | 809a679142eae8e7d3b4d2b3cf1426416883a7f9 /lua/custom/plugins/pairs.lua |
initial commit to new repo
Diffstat (limited to 'lua/custom/plugins/pairs.lua')
-rw-r--r-- | lua/custom/plugins/pairs.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/custom/plugins/pairs.lua b/lua/custom/plugins/pairs.lua new file mode 100644 index 0000000..637b524 --- /dev/null +++ b/lua/custom/plugins/pairs.lua @@ -0,0 +1,7 @@ +return { + "windwp/nvim-autopairs", + event = "InsertEnter", + config = function() + require("nvim-autopairs").setup({ map_c_h = true }) + end, +} |