/ modules / home / programs / neovim / default.nix
default.nix
 1  {
 2    flake,
 3    config,
 4    ...
 5  }:
 6  {
 7    imports = [
 8      flake.inputs.lazyvim.homeManagerModules.default
 9      ./config.nix
10      ./extras.nix
11      ./plugins.nix
12    ];
13  
14    programs = {
15      neovim.defaultEditor = !config.services.emacs.defaultEditor;
16  
17      lazyvim = {
18        enable = true;
19        # pluginSource = "latest";
20        # installCoreDependencies = false;
21        ignoreBuildNotifications = false;
22      };
23    };
24  }