nix fmt
All checks were successful
/ check (push) Successful in 1m39s

This commit is contained in:
Oliver Davies 2025-07-10 22:55:59 +01:00
parent b32493780d
commit 6a87e455bd
16 changed files with 105 additions and 46 deletions

View file

@ -6,8 +6,8 @@
enableTelescope = true;
};
keymaps =
lib.mkIf config.plugins.refactoring.enable ([
keymaps = lib.mkIf config.plugins.refactoring.enable (
[
{
key = "<leader>ri";
action = "<cmd>Refactor inline_var<CR>";
@ -43,5 +43,6 @@
'';
options.silent = true;
}
]);
]
);
}