nix/home/program/bash/module/Vi.nix
2024-11-06 01:07:30 +03:00

9 lines
91 B
Nix

{ ... }: {
text = ''
# Neovim shortcut.
function v() {
nvim -- "''${@}"
}
'';
}