Working on LSP and shit like that, Astro config is confusing, need to

learn it myself from scratch
This commit is contained in:
RingOfStorms (Joshua Bell) 2023-05-23 02:56:59 -05:00
parent 5e821a4d61
commit dc3e319f27
19 changed files with 400 additions and 18 deletions

11
lua/user/rest-http.lua Normal file
View file

@ -0,0 +1,11 @@
return {
"rest-nvim/rest.nvim",
commit = "d8dc204e9f6fd930d9d1d709f0d19138f804431a",
event = "BufEnter *.http",
requires = { "nvim-lua/plenary.nvim" },
mappings = {
n = {
["<leader>r"] = { function() require("rest-nvim").run() end, desc = "Send http request" },
}
},
}