mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nvim): add export-to-zed plugin
This commit is contained in:
12
config/nvim/lua/plugins/export-to-zed.lua
Normal file
12
config/nvim/lua/plugins/export-to-zed.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user