From aa23537659d98adb6ae9d2316e021210d83c9261 Mon Sep 17 00:00:00 2001 From: bunny winter Date: Wed, 15 Jan 2025 13:53:20 -0600 Subject: [PATCH] add nvim-autopairs --- lazy-lock.json | 1 + lua/nyanko/lazy/autopairs.lua | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 lua/nyanko/lazy/autopairs.lua diff --git a/lazy-lock.json b/lazy-lock.json index 1a01de1..44edfff 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -15,6 +15,7 @@ "mason-lspconfig.nvim": { "branch": "main", "commit": "e942edf5c85b6a2ab74059ea566cac5b3e1514a4" }, "mason-tool-installer.nvim": { "branch": "main", "commit": "c5e07b8ff54187716334d585db34282e46fa2932" }, "mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" }, + "nvim-autopairs": { "branch": "master", "commit": "3d02855468f94bf435db41b661b58ec4f48a06b7" }, "nvim-cmp": { "branch": "main", "commit": "8c82d0bd31299dbff7f8e780f5e06d2283de9678" }, "nvim-lspconfig": { "branch": "master", "commit": "339ccc81e08793c3af9b83882a6ebd90c9cc0d3b" }, "nvim-treesitter": { "branch": "master", "commit": "f0c928dbe93533b7e35894a8f957f40150d1f663" }, diff --git a/lua/nyanko/lazy/autopairs.lua b/lua/nyanko/lazy/autopairs.lua new file mode 100644 index 0000000..6378d47 --- /dev/null +++ b/lua/nyanko/lazy/autopairs.lua @@ -0,0 +1,5 @@ +return { + "windwp/nvim-autopairs", + event = "InsertEnter", + config = true, +}