1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-09 02:21:07 +01:00
nixvim/plugins/by-name/codesnap/default.nix
2025-12-07 22:46:34 +00:00

18 lines
481 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "codesnap";
package = "codesnap-nvim";
description = "Snapshot plugin with rich features that can make pretty code snapshots.";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
save_path = "~/Pictures/Screenshots/";
mac_window_bar = true;
title = "CodeSnap.nvim";
watermark = "";
breadcrumbs_separator = "/";
has_breadcrumbs = true;
has_line_number = false;
};
}