mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
27 lines
508 B
Nix
27 lines
508 B
Nix
{
|
|
empty = {
|
|
plugins.debugprint.enable = true;
|
|
};
|
|
|
|
example = {
|
|
plugins.debugprint = {
|
|
enable = true;
|
|
|
|
createKeymaps = true;
|
|
createCommands = true;
|
|
moveToDebugline = false;
|
|
displayCounter = true;
|
|
displaySnippet = true;
|
|
filetypes = {
|
|
python = {
|
|
left = "print(f'";
|
|
right = "')";
|
|
midVar = "{";
|
|
rightVar = "}')";
|
|
};
|
|
};
|
|
ignoreTreesitter = false;
|
|
printTag = "DEBUGPRINT";
|
|
};
|
|
};
|
|
}
|