1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 23:42:47 +01:00
nixvim/plugins/by-name/quicker/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

35 lines
818 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "quicker";
package = "quicker-nvim";
description = "Improved UI and workflow for the Neovim quickfix.";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsOptions = import ./settings-options.nix lib;
settingsExample = {
keys = [
{
__unkeyed-1 = ">";
__unkeyed-2.__raw = ''
function()
require("quicker").expand({ before = 2, after = 2, add_to_existing = true })
end
'';
desc = "Expand quickfix context";
}
{
__unkeyed-1 = "<";
__unkeyed-2.__raw = "require('quicker').collapse";
desc = "Collapse quickfix context";
}
];
edit = {
enabled = false;
};
highlight = {
load_buffers = false;
};
};
}