mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
13 lines
285 B
Lua
13 lines
285 B
Lua
-- 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,
|
|
}
|