From c20982fe6d2f51e5c54a5ef798a20adbab6be631 Mon Sep 17 00:00:00 2001 From: zackartz Date: Tue, 14 May 2024 15:57:15 -0400 Subject: [PATCH] 587 current 2024-05-14 15:57:12 24.05.20240512.2057814 6.8.6-zen1 * --- .../vim/config/lua/plugins/tools/neorg.lua | 1 - .../vim/config/lua/plugins/tools/rest.lua | 27 ++++++++++--------- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/modules/home-manager/vim/config/lua/plugins/tools/neorg.lua b/modules/home-manager/vim/config/lua/plugins/tools/neorg.lua index b9f5e9b..81a8162 100644 --- a/modules/home-manager/vim/config/lua/plugins/tools/neorg.lua +++ b/modules/home-manager/vim/config/lua/plugins/tools/neorg.lua @@ -1,5 +1,4 @@ return { - { "vhyrro/luarocks.nvim", priority = 1000, config = true }, { "nvim-neorg/neorg", dependencies = { "luarocks.nvim" }, diff --git a/modules/home-manager/vim/config/lua/plugins/tools/rest.lua b/modules/home-manager/vim/config/lua/plugins/tools/rest.lua index 6e9b51d..f5ec7d6 100644 --- a/modules/home-manager/vim/config/lua/plugins/tools/rest.lua +++ b/modules/home-manager/vim/config/lua/plugins/tools/rest.lua @@ -1,15 +1,18 @@ return { - "vhyrro/luarocks.nvim", - priority = 1000, - config = true, - opts = { - rocks = { "lua-curl", "nvim-nio", "mimetypes", "xml2lua" }, + { + "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, }, -}, { - "rest-nvim/rest.nvim", - ft = "http", - dependencies = { "luarocks.nvim" }, - config = function() - require("rest-nvim").setup() - end, }