From 94991534e1a9136527b9e18a9ffdc736f6b89466 Mon Sep 17 00:00:00 2001 From: Adam Cooper Date: Fri, 14 Feb 2025 07:13:49 -0500 Subject: [PATCH] [lazyvim] Add plugins: nvlime, paredit --- nvim/lazy-lock.json | 3 +++ nvim/lua/plugins/custom.lua | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 nvim/lua/plugins/custom.lua diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index 8a75887..687c219 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -27,6 +27,9 @@ "nvim-treesitter": { "branch": "master", "commit": "80e6de9d24eec68d82d5f4e6feae94c9c753ebd6" }, "nvim-treesitter-textobjects": { "branch": "master", "commit": "ad8f0a472148c3e0ae9851e26a722ee4e29b1595" }, "nvim-ts-autotag": { "branch": "main", "commit": "1cca23c9da708047922d3895a71032bc0449c52d" }, + "nvlime": { "branch": "master", "commit": "228e4fa8c7d10b1ed07b1649a63743613b77a828" }, + "paredit": { "branch": "master", "commit": "60203e50698ed2211b4434a66ab2258a1a6ac3b5" }, + "parsley": { "branch": "main", "commit": "c4100aa449bfa971dcfc56ffe4206ba034db08cc" }, "persistence.nvim": { "branch": "main", "commit": "f6aad7dde7fcf54148ccfc5f622c6d5badd0cc3d" }, "plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" }, "render-markdown.nvim": { "branch": "main", "commit": "e05a9f22f31c088ece3fa5928daf546a015b66ee" }, diff --git a/nvim/lua/plugins/custom.lua b/nvim/lua/plugins/custom.lua new file mode 100644 index 0000000..5e16623 --- /dev/null +++ b/nvim/lua/plugins/custom.lua @@ -0,0 +1,20 @@ +-- since this is just an example spec, don't actually load anything here and return an empty spec +-- stylua: ignore +-- if true then return {} end + +-- every spec file under the "plugins" directory will be loaded automatically by lazy.nvim +-- +-- In your plugin files, you can: +-- * add extra plugins +-- * disable/enabled LazyVim plugins +-- * override the configuration of LazyVim plugins +return { + "kovisoft/paredit", + { + "monkoose/nvlime", + event = "VeryLazy", + dependencies = { + "monkoose/parsley" + } + }, +}