2021-11-08 13:52:09 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
2022-03-23 12:41:04 +01:00
|
|
|
let cfg = config.modules.editors;
|
|
|
|
in {
|
|
|
|
config = lib.mkIf cfg.vim {
|
|
|
|
home-manager.users.moritz.programs.neovim = {
|
|
|
|
enable = true;
|
|
|
|
vimAlias = true;
|
|
|
|
vimdiffAlias = true;
|
|
|
|
};
|
2021-11-08 13:52:09 +01:00
|
|
|
};
|
|
|
|
}
|