Initial commit

This commit is contained in:
2025-04-30 00:02:34 +02:00
commit 4dbc00732c
23 changed files with 1557 additions and 0 deletions

10
lua/plugins/rest.lua Normal file
View File

@@ -0,0 +1,10 @@
return {
"rest-nvim/rest.nvim",
dependencies = {
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
table.insert(opts.ensure_installed, "http")
end,
},
}