nix-community.nixvim/tests/test-sources/plugins/languages/debugprint.nix

28 lines
508 B
Nix
Raw Normal View History

2023-12-19 14:03:10 +01:00
{
empty = {
plugins.debugprint.enable = true;
};
example = {
plugins.debugprint = {
enable = true;
createKeymaps = true;
createCommands = true;
2023-12-19 14:03:10 +01:00
moveToDebugline = false;
displayCounter = true;
displaySnippet = true;
filetypes = {
python = {
left = "print(f'";
right = "')";
midVar = "{";
rightVar = "}')";
};
};
ignoreTreesitter = false;
printTag = "DEBUGPRINT";
};
};
}