mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-09 02:21:07 +01:00
18 lines
481 B
Nix
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;
|
|
};
|
|
}
|