nix/home/program/bash/module/Vi.nix

9 lines
91 B
Nix
Raw Normal View History

2024-04-06 03:03:58 +03:00
{ ... }: {
text = ''
# Neovim shortcut.
function v() {
nvim -- "''${@}"
}
'';
}