mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-06 09:01:06 +01:00
19 lines
487 B
Nix
19 lines
487 B
Nix
{ lib, ... }:
|
|
with lib;
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "codesnap";
|
|
package = "codesnap-nvim";
|
|
description = "Snapshot plugin with rich features that can make pretty code snapshots.";
|
|
|
|
maintainers = [ maintainers.GaetanLepage ];
|
|
|
|
settingsExample = {
|
|
save_path = "~/Pictures/Screenshots/";
|
|
mac_window_bar = true;
|
|
title = "CodeSnap.nvim";
|
|
watermark = "";
|
|
breadcrumbs_separator = "/";
|
|
has_breadcrumbs = true;
|
|
has_line_number = false;
|
|
};
|
|
}
|