chore(nvim): format custom init.lua file

This commit is contained in:
Joao P Dubas 2024-03-03 23:00:49 +00:00
parent c8258d2087
commit ed04d14a9a

View File

@ -134,7 +134,11 @@ return {
end
return {
{ '<leader>tr', '<Plug>RestNvim', desc = 'Run the request under cursor' },
{ '<leader>tp', '<Plug>RestNvimPreview', desc = 'Preview the curl command for the request under cursor' },
{
'<leader>tp',
'<Plug>RestNvimPreview',
desc = 'Preview the curl command for the request under cursor',
},
{ '<leader>tl', '<Plug>RestNvimLast', desc = 'Re-run the last request' },
}
end,
@ -185,7 +189,12 @@ return {
desc = 'Open ter[m]inal [v]ertically',
noremap = true,
},
{ '<leader>mc', '<cmd>ToggleTermSendCurrentLine<cr>', desc = 'Send [c]urrent line under the cursor', noremap = true },
{
'<leader>mc',
'<cmd>ToggleTermSendCurrentLine<cr>',
desc = 'Send [c]urrent line under the cursor',
noremap = true,
},
}
end,
},