feat(nvim): add export-to-zed plugin

This commit is contained in:
Stefan Imhoff
2024-09-28 15:45:14 +02:00
parent 5e592bc0f9
commit 68ad443a0c
2 changed files with 25 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
-- Export active buffers to Zed
-- https://github.com/kogakure/export-to-zed.nvim
return {
"kogakure/export-to-zed.nvim",
lazy = false,
keys = {
{ "<leader>zed", "<CMD>ExportToZed<CR>", desc = "Export to Zed" },
},
config = function()
require("export-to-zed").setup()
end,
}