mirror of
https://github.com/nix-community/nixvim.git
synced 2025-09-01 16:27:55 +02:00
25 lines
412 B
Nix
25 lines
412 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "cutlass-nvim";
|
|
moduleName = "cutlass";
|
|
packPathName = "cutlass.nvim";
|
|
|
|
maintainers = [ lib.maintainers.saygo-png ];
|
|
|
|
settingsExample = {
|
|
override_del = true;
|
|
exclude = [
|
|
"ns"
|
|
"nS"
|
|
"nx"
|
|
"nX"
|
|
"nxx"
|
|
"nX"
|
|
];
|
|
registers = {
|
|
select = "s";
|
|
delete = "d";
|
|
change = "c";
|
|
};
|
|
};
|
|
}
|