From 81e21b3b72bf392267fcd1be59c0f6acf616f64b Mon Sep 17 00:00:00 2001 From: zackartz Date: Tue, 14 May 2024 15:54:58 -0400 Subject: [PATCH] 586 current 2024-05-14 15:54:55 24.05.20240512.2057814 6.8.6-zen1 * --- .../vim/config/lua/plugins/tools/rest.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 modules/home-manager/vim/config/lua/plugins/tools/rest.lua diff --git a/modules/home-manager/vim/config/lua/plugins/tools/rest.lua b/modules/home-manager/vim/config/lua/plugins/tools/rest.lua new file mode 100644 index 0000000..6e9b51d --- /dev/null +++ b/modules/home-manager/vim/config/lua/plugins/tools/rest.lua @@ -0,0 +1,15 @@ +return { + "vhyrro/luarocks.nvim", + priority = 1000, + config = true, + opts = { + rocks = { "lua-curl", "nvim-nio", "mimetypes", "xml2lua" }, + }, +}, { + "rest-nvim/rest.nvim", + ft = "http", + dependencies = { "luarocks.nvim" }, + config = function() + require("rest-nvim").setup() + end, +}