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