mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 01:49:41 +00:00
Enable neovim instead of vim
This commit is contained in:
parent
d7792681cf
commit
439f9a15f3
|
@ -1,6 +1,10 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
# Basic list of must-have packages for all systems
|
|
||||||
environment.systemPackages = with pkgs; [
|
# Install an actually usable system-wide editor
|
||||||
vim
|
programs.neovim = {
|
||||||
];
|
enable = true;
|
||||||
|
defaultEditor = true;
|
||||||
|
vimAlias = true;
|
||||||
|
viAlias = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue