1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/tests/test-sources/modules/commands.nix

10 lines
131 B
Nix

{
example = {
userCommands = {
"W" = {
command = ":w<CR>";
desc = "Write file";
};
};
};
}