1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/tests/test-sources/plugins/by-name/codesnap/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

43 lines
951 B
Nix

{
empty = {
plugins.codesnap.enable = true;
};
defaults = {
plugins.codesnap = {
enable = true;
settings = {
save_path.__raw = "nil";
mac_window_bar = true;
title = "CodeSnap.nvim";
code_font_family = "CaskaydiaCove Nerd Font";
watermark_font_family = "Pacifico";
watermark = "CodeSnap.nvim";
bg_theme = "default";
bg_color.__raw = "nil";
breadcrumbs_separator = "/";
has_breadcrumbs = false;
has_line_number = false;
show_workspace = false;
min_width = 0;
};
};
};
example = {
plugins.codesnap = {
enable = true;
settings = {
save_path = "~/Pictures/Screenshots/";
mac_window_bar = true;
title = "CodeSnap.nvim";
watermark = "";
breadcrumbs_separator = "/";
has_breadcrumbs = true;
has_line_number = false;
};
};
};
}