mirror of
https://github.com/tomru/nvim.git
synced 2026-03-03 06:27:14 +01:00
add hurl
This commit is contained in:
58
lua/plugins/hurl.lua
Normal file
58
lua/plugins/hurl.lua
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
return {
|
||||||
|
'jellydn/hurl.nvim',
|
||||||
|
dependencies = {
|
||||||
|
'MunifTanjim/nui.nvim',
|
||||||
|
'nvim-lua/plenary.nvim',
|
||||||
|
'nvim-treesitter/nvim-treesitter',
|
||||||
|
-- Optional, for markdown rendering with render-markdown.nvim
|
||||||
|
{
|
||||||
|
'MeanderingProgrammer/render-markdown.nvim',
|
||||||
|
opts = {
|
||||||
|
file_types = { 'markdown' },
|
||||||
|
},
|
||||||
|
ft = { 'markdown' },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
ft = 'hurl',
|
||||||
|
opts = {
|
||||||
|
-- Show debugging info
|
||||||
|
debug = false,
|
||||||
|
-- Show notification on run
|
||||||
|
show_notification = false,
|
||||||
|
-- Show response in popup or split
|
||||||
|
mode = 'split',
|
||||||
|
-- Default formatter
|
||||||
|
formatters = {
|
||||||
|
json = { 'jq' }, -- Make sure you have install jq in your system, e.g: brew install jq
|
||||||
|
html = {
|
||||||
|
'prettier', -- Make sure you have install prettier in your system, e.g: npm install -g prettier
|
||||||
|
'--parser',
|
||||||
|
'html',
|
||||||
|
},
|
||||||
|
xml = {
|
||||||
|
'tidy', -- Make sure you have installed tidy in your system, e.g: brew install tidy-html5
|
||||||
|
'-xml',
|
||||||
|
'-i',
|
||||||
|
'-q',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
-- Default mappings for the response popup or split views
|
||||||
|
mappings = {
|
||||||
|
close = 'q', -- Close the response popup or split view
|
||||||
|
next_panel = '<C-n>', -- Move to the next response popup window
|
||||||
|
prev_panel = '<C-p>', -- Move to the previous response popup window
|
||||||
|
},
|
||||||
|
},
|
||||||
|
keys = {
|
||||||
|
-- Run API request
|
||||||
|
{ '<leader>A', '<cmd>HurlRunner<CR>', desc = 'Run All requests' },
|
||||||
|
{ '<leader>a', '<cmd>HurlRunnerAt<CR>', desc = 'Run Api request' },
|
||||||
|
{ '<leader>te', '<cmd>HurlRunnerToEntry<CR>', desc = 'Run Api request to entry' },
|
||||||
|
{ '<leader>tE', '<cmd>HurlRunnerToEnd<CR>', desc = 'Run Api request from current entry to end' },
|
||||||
|
{ '<leader>tm', '<cmd>HurlToggleMode<CR>', desc = 'Hurl Toggle Mode' },
|
||||||
|
{ '<leader>tv', '<cmd>HurlVerbose<CR>', desc = 'Run Api in verbose mode' },
|
||||||
|
{ '<leader>tV', '<cmd>HurlVeryVerbose<CR>', desc = 'Run Api in very verbose mode' },
|
||||||
|
-- Run Hurl request in visual mode
|
||||||
|
{ '<leader>h', ':HurlRunner<CR>', desc = 'Hurl Runner', mode = 'v' },
|
||||||
|
},
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user