feat: all yanky and debugprint
This commit is contained in:
parent
eaf110c96f
commit
63bbeaca3b
7 changed files with 221 additions and 7 deletions
38
home-manager/modules/neovim/plugins/debugprint.nix
Normal file
38
home-manager/modules/neovim/plugins/debugprint.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{...}: {
|
||||
programs.nixvim = {
|
||||
plugins = {
|
||||
debugprint = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
commands = {
|
||||
toggle_comment_debug_prints = "ToggleCommentDebugPrints";
|
||||
delete_debug_prints = "DeleteDebugPrints";
|
||||
};
|
||||
|
||||
display_counter = true;
|
||||
display_snippet = true;
|
||||
|
||||
keymaps = {
|
||||
normal = {
|
||||
plain_below = "g?p";
|
||||
plain_above = "g?P";
|
||||
variable_below = "g?v";
|
||||
variable_above = "g?V";
|
||||
variable_below_alwaysprompt.__raw = "nil";
|
||||
variable_above_alwaysprompt.__raw = "nil";
|
||||
textobj_below = "g?o";
|
||||
textobj_above = "g?O";
|
||||
toggle_comment_debug_prints.__raw = "nil";
|
||||
delete_debug_prints.__raw = "nil";
|
||||
};
|
||||
visual = {
|
||||
variable_below = "g?v";
|
||||
variable_above = "g?V";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue