mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
11 lines
131 B
Nix
11 lines
131 B
Nix
|
{
|
||
|
example = {
|
||
|
userCommands = {
|
||
|
"W" = {
|
||
|
command = ":w<CR>";
|
||
|
desc = "Write file";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|