📸 Snapshot plugin that can make pretty code snapshots with real-time previews for Neovim
Note
This plugin is currently in its early stages and may have some bugs, please feel free to submit issues and PRs.
- 🔥 Real-time preview
- 🤩 Beautiful code snap template
- 😎 Custom watermark and window style
- 💻 Mac style title bar
- 👏 [WIP] Custom template background
- 🤖 [WIP] Generate snapshot just one command
- Rust environment required for compiling codesnap.nvim plugin server source code, visit Install Rust for more detail.
- NPM required for build preview source code, visit Install Nodejs for more detail.
{ "mistricky/codesnap.nvim", build = "make" },
For take a screenshot, the codesnap.nvim
provides a command named CodeSnapPreviewOn
to open the preview page, and then you can switch to visual mode and select code you want, and finally just click the copy button on the preview page, that's all :)
Screen.Recording.2024-02-21.at.20.23.26.mov
CodeSnapPreviewOn # Open preview page
-- The following commands are planned but not implemented yet. (welcome PR :))
CodeSnap # Take a code snap and copy it into the clipboard
Define your custom config using setup
function
require("codesnap").setup({...})
There is a default config:
{
mac_window_bar = true, -- MacOS style title bar switch
opacity = true, -- The code snap has some opacity by default, set it to false for 100% opacity
watermark = "CodeSnap.nvim" -- (Optional) you can custom your own watermark, but if you don't like it, just set it to nil
}
MIT.