From c8e3e5afa3e6ad87112f79038b5d9f998d2ec311 Mon Sep 17 00:00:00 2001 From: Gil Portenseigne Date: Tue, 2 Jan 2024 08:06:29 +0100 Subject: [PATCH] =?UTF-8?q?ajout=20d'un=20client=20http=20=C3=A0=20tester?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/init.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 6eae6bb..e11bb80 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -33,6 +33,18 @@ require('lazy').setup({ 'tpope/vim-fugitive', 'tpope/vim-rhubarb', + -- http client à tester +-- plugins/rest.lua + { + "rest-nvim/rest.nvim", + dependencies = { { "nvim-lua/plenary.nvim" } }, + config = function() + require("rest-nvim").setup({ + --- Get the same options from Packer setup + }) + end + }, + -- Detect tabstop and shiftwidth automatically 'tpope/vim-sleuth',