mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
plugins/debugprint: add missing createCommands
option (#831)
This commit is contained in:
parent
6d72e00455
commit
fc94d7468d
2 changed files with 6 additions and 0 deletions
|
@ -15,6 +15,10 @@ in {
|
|||
|
||||
package = helpers.mkPackageOption "debugprint.nvim" pkgs.vimPlugins.debugprint-nvim;
|
||||
|
||||
createCommands = helpers.defaultNullOpts.mkBool true ''
|
||||
Creates default commands.
|
||||
'';
|
||||
|
||||
createKeymaps = helpers.defaultNullOpts.mkBool true ''
|
||||
Creates default keymappings.
|
||||
'';
|
||||
|
@ -96,6 +100,7 @@ in {
|
|||
extraConfigLua = let
|
||||
setupOptions = with cfg;
|
||||
{
|
||||
create_commands = createCommands;
|
||||
create_keymaps = createKeymaps;
|
||||
move_to_debugline = moveToDebugline;
|
||||
display_counter = displayCounter;
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
enable = true;
|
||||
|
||||
createKeymaps = true;
|
||||
createCommands = true;
|
||||
moveToDebugline = false;
|
||||
displayCounter = true;
|
||||
displaySnippet = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue