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, }