1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 01:48:31 +02:00

neovim: add vi{,m}Alias options

This commit is contained in:
Roman Volosatovs 2018-08-18 04:50:49 +02:00 committed by Nikita Uvarov
parent 7699ed3fc8
commit 9fe6fa7f44
No known key found for this signature in database
GPG Key ID: F7A5FB3A7C10EF96

View File

@ -13,6 +13,22 @@ in
programs.neovim = {
enable = mkEnableOption "Neovim";
viAlias = mkOption {
type = types.bool;
default = false;
description = ''
Symlink `vi` to `nvim` binary.
'';
};
vimAlias = mkOption {
type = types.bool;
default = false;
description = ''
Symlink `vim` to `nvim` binary.
'';
};
withPython = mkOption {
type = types.bool;
default = true;
@ -89,7 +105,7 @@ in
inherit (cfg)
extraPython3Packages withPython3
extraPythonPackages withPython
withRuby configure;
withRuby viAlias vimAlias configure;
})
];
};