1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-06 09:01:06 +01:00
nixvim/plugins/by-name/codesnap/default.nix
Austin Horstman 5d1c27e53c plugins/codesnap: remove settingsOption
Blocking configuration from v2 of plugin.
2025-12-03 23:16:39 +00:00

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;
};
}