From ed04d14a9a358e127ec6b7bbedd2b0cfe41a05cd Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Sun, 3 Mar 2024 23:00:49 +0000 Subject: [PATCH] chore(nvim): format custom init.lua file --- config/nvim/lua/custom/plugins/init.lua | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/config/nvim/lua/custom/plugins/init.lua b/config/nvim/lua/custom/plugins/init.lua index 1279603..e09c6a5 100644 --- a/config/nvim/lua/custom/plugins/init.lua +++ b/config/nvim/lua/custom/plugins/init.lua @@ -134,7 +134,11 @@ return { end return { { 'tr', 'RestNvim', desc = 'Run the request under cursor' }, - { 'tp', 'RestNvimPreview', desc = 'Preview the curl command for the request under cursor' }, + { + 'tp', + 'RestNvimPreview', + desc = 'Preview the curl command for the request under cursor', + }, { 'tl', 'RestNvimLast', desc = 'Re-run the last request' }, } end, @@ -185,7 +189,12 @@ return { desc = 'Open ter[m]inal [v]ertically', noremap = true, }, - { 'mc', 'ToggleTermSendCurrentLine', desc = 'Send [c]urrent line under the cursor', noremap = true }, + { + 'mc', + 'ToggleTermSendCurrentLine', + desc = 'Send [c]urrent line under the cursor', + noremap = true, + }, } end, },