plugins/debugprint: init

This commit is contained in:
Gaetan Lepage 2023-12-19 14:03:10 +01:00 committed by Gaétan Lepage
parent dceeab73b1
commit 6d72e00455
3 changed files with 151 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{
empty = {
plugins.debugprint.enable = true;
};
example = {
plugins.debugprint = {
enable = true;
createKeymaps = true;
moveToDebugline = false;
displayCounter = true;
displaySnippet = true;
filetypes = {
python = {
left = "print(f'";
right = "')";
midVar = "{";
rightVar = "}')";
};
};
ignoreTreesitter = false;
printTag = "DEBUGPRINT";
};
};
}