small updates around the place

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-02-20 21:00:17 -06:00
parent 4413cd4960
commit af4a920551
6 changed files with 38 additions and 27 deletions

View file

@ -1,5 +1,14 @@
local U = require("util")
return {
"rest-nvim/rest.nvim",
enabled = function()
return U.cmd_executable("curl", {
[false] = function()
vim.notify("curl not installed, http rest disabled", 2)
end,
})
end,
event = "BufEnter *.http",
dependencies = { "nvim-lua/plenary.nvim" },
opts = {