Compare commits
No commits in common. "5d710fda976f04e5fa45529969cb72511ba1d0f5" and "65aa3acf162a447a329a5e32188aae6a4adb3c20" have entirely different histories.
5d710fda97
...
65aa3acf16
@ -9,3 +9,4 @@ exec = systemd-run --user --unit=xwaylandvideobridge xwaylandvideobridge || syst
|
|||||||
exec = systemd-run --user --unit=polkit-agent /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 || systemctl --user restart polkit-agent
|
exec = systemd-run --user --unit=polkit-agent /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 || systemctl --user restart polkit-agent
|
||||||
exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP PATH
|
exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP PATH
|
||||||
exec = sleep 1 && systemctl --user restart compositor.target
|
exec = sleep 1 && systemctl --user restart compositor.target
|
||||||
|
exec-once = swaylock
|
||||||
|
24
users/price/dots/.config/nvim/after/ftplugin/hurl.lua
Normal file
24
users/price/dots/.config/nvim/after/ftplugin/hurl.lua
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
vim.keymap.set("n", "<leader>fr", "<Cmd>Hurl<CR>", {
|
||||||
|
buffer = true,
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.opt_local.commentstring = "# %s"
|
||||||
|
|
||||||
|
vim.keymap.set("n", "<leader>fr", "<cmd>HurlRunner<CR>", {
|
||||||
|
desc = "Hurl: Runner",
|
||||||
|
})
|
||||||
|
vim.keymap.set("n", "<leader>fa", "<cmd>HurlRunnerAt<CR>", {
|
||||||
|
desc = "Hurl: Run Api request",
|
||||||
|
})
|
||||||
|
vim.keymap.set("n", "<leader>fe", "<cmd>HurlRunnerToEntry<CR>", {
|
||||||
|
desc = "Hurl: Run Api request to entry",
|
||||||
|
})
|
||||||
|
vim.keymap.set("n", "<leader>fm", "<cmd>HurlToggleMode<CR>", {
|
||||||
|
desc = "Hurl: Toggle Mode",
|
||||||
|
})
|
||||||
|
vim.keymap.set("n", "<leader>rv", "<cmd>HurlVerbose<CR>", {
|
||||||
|
desc = "Hurl: Run Api in verbose mode",
|
||||||
|
})
|
||||||
|
vim.keymap.set("v", "<leader>fr", ":HurlRunner<CR>", {
|
||||||
|
desc = "Hurl: Runner",
|
||||||
|
})
|
@ -101,15 +101,14 @@ return {
|
|||||||
providers = {
|
providers = {
|
||||||
ripgrep = {
|
ripgrep = {
|
||||||
module = "blink-ripgrep",
|
module = "blink-ripgrep",
|
||||||
score_offset = -3,
|
|
||||||
max_items = 5,
|
max_items = 5,
|
||||||
name = "Ripgrep",
|
name = "Ripgrep",
|
||||||
--- @module "blink-ripgrep"
|
--- @module "blink-ripgrep"
|
||||||
--- @type blink-ripgrep.Options
|
--- @type blink-ripgrep.Options
|
||||||
opts = {
|
opts = {
|
||||||
prefix_min_len = 3,
|
prefix_min_len = 3,
|
||||||
search_casing = "--smart-case",
|
|
||||||
additional_rg_options = {
|
additional_rg_options = {
|
||||||
|
"--smart-case",
|
||||||
"--hidden",
|
"--hidden",
|
||||||
"--word-regexp",
|
"--word-regexp",
|
||||||
"--glob=!.git/*",
|
"--glob=!.git/*",
|
||||||
|
19
users/price/dots/.config/nvim/lua/plugins/configs/hurl.lua
Normal file
19
users/price/dots/.config/nvim/lua/plugins/configs/hurl.lua
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
"jellydn/hurl.nvim",
|
||||||
|
dependencies = { "MunifTanjim/nui.nvim" },
|
||||||
|
ft = "hurl",
|
||||||
|
opts = {
|
||||||
|
debug = false,
|
||||||
|
mode = "split",
|
||||||
|
formatters = {
|
||||||
|
json = { "jq" },
|
||||||
|
html = {
|
||||||
|
"prettier",
|
||||||
|
"--parser",
|
||||||
|
"html",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user