mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-24 10:14:03 -05:00
plugins/debugprint: add missing createCommands option (#831)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user