From 5a18e193bf5e8d54cae61835ef2db267345e3f5d Mon Sep 17 00:00:00 2001 From: David Work Date: Fri, 6 Jun 2025 07:31:34 +0900 Subject: [PATCH] Added luarocks and rest plugins --- lua/plugins/luarocks.lua | 6 ++++++ lua/plugins/rest.lua | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 lua/plugins/luarocks.lua create mode 100644 lua/plugins/rest.lua diff --git a/lua/plugins/luarocks.lua b/lua/plugins/luarocks.lua new file mode 100644 index 0000000..9921a85 --- /dev/null +++ b/lua/plugins/luarocks.lua @@ -0,0 +1,6 @@ +return { + "vhyrro/luarocks.nvim", + opts = { + rocks = { "lua-curl", "nvim-nio", "mimetypes", "xml2lua" } + } +} diff --git a/lua/plugins/rest.lua b/lua/plugins/rest.lua new file mode 100644 index 0000000..1f11684 --- /dev/null +++ b/lua/plugins/rest.lua @@ -0,0 +1,11 @@ +return { + "rest-nvim/rest.nvim", + dependencies = { + "nvim-treesitter/nvim-treesitter", + opts = function(_, opts) + opts.ensure_installed = opts.ensure_installed or {} + table.insert(opts.ensure_installed, "http") + end, + "j-hui/fidget.nvim" + } +}