mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
27 lines
479 B
Nix
27 lines
479 B
Nix
|
{
|
||
|
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";
|
||
|
};
|
||
|
};
|
||
|
}
|