Compare commits
No commits in common. "5a1c0dfdc3aab25ebdf3a9e2c559b447491b896e" and "ff6d6300528848fdff936b26da46471628f31b5d" have entirely different histories.
5a1c0dfdc3
...
ff6d630052
2 changed files with 1 additions and 38 deletions
|
@ -11,8 +11,7 @@ return {
|
||||||
---@type AstroUIOpts
|
---@type AstroUIOpts
|
||||||
opts = {
|
opts = {
|
||||||
-- change colorscheme
|
-- change colorscheme
|
||||||
-- colorscheme = "astrodark",
|
colorscheme = "astrodark",
|
||||||
colorscheme = "astrolight",
|
|
||||||
-- colorscheme = "everforest",
|
-- colorscheme = "everforest",
|
||||||
-- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes
|
-- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes
|
||||||
highlights = {
|
highlights = {
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
return {
|
|
||||||
"jellydn/hurl.nvim",
|
|
||||||
dependencies = {
|
|
||||||
"MunifTanjim/nui.nvim",
|
|
||||||
"nvim-lua/plenary.nvim",
|
|
||||||
"nvim-treesitter/nvim-treesitter",
|
|
||||||
},
|
|
||||||
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",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
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>tm", "<cmd>HurlToggleMode<CR>", desc = "Hurl Toggle Mode" },
|
|
||||||
{ "<leader>tv", "<cmd>HurlVerbose<CR>", desc = "Run Api in verbose mode" },
|
|
||||||
-- Run Hurl request in visual mode
|
|
||||||
{ "<leader>h", ":HurlRunner<CR>", desc = "Hurl Runner", mode = "v" },
|
|
||||||
},
|
|
||||||
}
|
|
Loading…
Reference in a new issue