zsh: optimise startup - compile init file - pre-generate and compile compinit dump (zcompdump)
Alan Pearce alan@alanpearce.eu
Mon, 02 Mar 2020 15:10:32 +0100
1 files changed, 3 insertions(+), 0 deletions(-)
jump to
M user/settings/zsh.nix → user/settings/zsh.nix
@@ -4,6 +4,7 @@ let inherit (pkgs) stdenv; lsOptions = if stdenv.isDarwin then "-p" else "-v --group-directories-first"; lsIsoDate = if stdenv.isDarwin then "" else "--time-style=long-iso"; + zshrc = ".config/zsh/.zshrc"; mkZshPlugin = attrs: { name = attrs.name; src = stdenv.mkDerivation { @@ -254,4 +255,6 @@ source ${pkgs.fzf}/share/fzf/key-bindings.zsh '' + builtins.readFile ../zsh/.config/zsh/.zshrc; }; + + home.file."${zshrc}".onChange = "${pkgs.zsh}/bin/zsh -i -c 'autoload -Uz compinit && compinit && zcompile ${zshrc}'"; }