From 4528deddc223d1bdfb5fa77ad4ed6dfb873d21d1 Mon Sep 17 00:00:00 2001 From: Patrick Auernig Date: Mon, 14 Oct 2024 16:54:02 +0200 Subject: [PATCH] plugins/neorepl: add lua repl for neovim --- lazy-lock.json | 1 + lua/valeth/plugins/neorepl.lua | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 lua/valeth/plugins/neorepl.lua diff --git a/lazy-lock.json b/lazy-lock.json index 2d0f677..3317422 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -20,6 +20,7 @@ "neoconf.nvim": { "branch": "main", "commit": "3a3ae3858ffe11abbd9dc24617cb81ae232a7df0" }, "neodev.nvim": { "branch": "main", "commit": "46aa467dca16cf3dfe27098042402066d2ae242d" }, "neogit": { "branch": "master", "commit": "eda716c44d3b5a424ea8604b10756c7fd8bed93a" }, + "neorepl.nvim": { "branch": "master", "commit": "15f4c4e523e1fbec74766e1967e1c2491df013c9" }, "noice.nvim": { "branch": "main", "commit": "df448c649ef6bc5a6a633a44f2ad0ed8d4442499" }, "nui.nvim": { "branch": "main", "commit": "b58e2bfda5cea347c9d58b7f11cf3012c7b3953f" }, "nvim-cmp": { "branch": "main", "commit": "ae644feb7b67bf1ce4260c231d1d4300b19c6f30" }, diff --git a/lua/valeth/plugins/neorepl.lua b/lua/valeth/plugins/neorepl.lua new file mode 100644 index 0000000..3242790 --- /dev/null +++ b/lua/valeth/plugins/neorepl.lua @@ -0,0 +1,7 @@ +local spec = { + "ii14/neorepl.nvim" +} + +spec.cmd = "Repl" + +return spec