nix-community.nixvim/plugins/by-name/quicker/default.nix
osbm a41559f093
Some checks are pending
Publish every Git push to main to FlakeHub / flakehub-publish (push) Waiting to run
Publish every git push to Flakestry / publish-flake (push) Waiting to run
Documentation / Version info (push) Waiting to run
Documentation / Build (push) Blocked by required conditions
Documentation / Combine builds (push) Blocked by required conditions
Documentation / Deploy (push) Blocked by required conditions
treewide: add plugin descriptions
2025-06-24 06:10:11 +00:00

36 lines
851 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "quicker";
packPathName = "quicker.nvim";
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;
};
};
}