21 lines
323 B
Nix
21 lines
323 B
Nix
{...}: {
|
|
programs.nixvim = {
|
|
plugins = {
|
|
spectre = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
keymaps = [
|
|
{
|
|
mode = "n";
|
|
key = "<leader>rs";
|
|
action = ":Spectre<CR>";
|
|
options = {
|
|
desc = "Spectre toggle";
|
|
silent = true;
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|