switch vim flavour to Neovim; reason: macOS clipboard support

access to system clipboard was broken in command-line vim, the buffers
"+ or "* were said not to exist and neither unnamed or unnamedplus
clipboard settings were working.

Aliases nvim to "vim"
This commit is contained in:
Trolli Schmittlauch 2022-05-19 17:11:04 +02:00
parent 8a96154f43
commit 9a519e2eb5
3 changed files with 10 additions and 14 deletions

View file

@ -440,8 +440,9 @@ in
ipb = "ip --color --brief";
ll = "ls -l";
wavesynth = "nix-shell -p sox --run 'play -n synth brownnoise synth pinknoise mix synth 0 0 0 15 40 80 trapezium amod 0.2 20'";
vim = "nvim";
};
home.sessionVariables = {
EDITOR = "vim";
EDITOR = "nvim";
};
}