mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 11:26:12 +01:00
13 lines
203 B
Nix
13 lines
203 B
Nix
{pkgs, ...}: {
|
|
programs.neovim = {
|
|
enable = true;
|
|
package = pkgs.unstable.neovim-unwrapped;
|
|
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
vimdiffAlias = true;
|
|
|
|
defaultEditor = true;
|
|
};
|
|
}
|