mirror of
https://github.com/macocianradu/nvim-http.git
synced 2026-07-16 02:48:46 +00:00
21 lines
334 B
Lua
21 lines
334 B
Lua
local M = {}
|
|
|
|
M.defaults = {
|
|
http = {
|
|
enabled = true,
|
|
execute_keymap = "<leader>hr",
|
|
clear_keymap = "<leader>hc",
|
|
timeout_ms = 10000,
|
|
highlight_group = "Comment",
|
|
command_patterns = {
|
|
"^curl%s+",
|
|
"^http%s+",
|
|
"^wget%s+",
|
|
"^%u+%s+https?://",
|
|
"^https?://",
|
|
},
|
|
},
|
|
}
|
|
|
|
return M
|