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

10 lines
102 B
Nix
Raw Normal View History

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