{ pkgs, lib, ... }: { programs.neovim = { enable = true; defaultEditor = true; extraConfig = builtins.concatStringsSep "\n" [ (lib.strings.fileContents ./base.vim) ]; }; }