mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
plugins/codesnap: init
This commit is contained in:
parent
1a46075dfe
commit
b64ee08d6b
3 changed files with 140 additions and 0 deletions
43
tests/test-sources/plugins/utils/codesnap.nix
Normal file
43
tests/test-sources/plugins/utils/codesnap.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.codesnap.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.codesnap = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
save_path = null;
|
||||
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 = null;
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue