diff options
author | Alan Pearce | 2019-10-05 05:30:50 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-05 05:30:50 +0200 |
commit | 644a368c03c92e3a8dd451855bef0465b04619e6 (patch) | |
tree | bfc01e70e23710d158b8197bb2a17c552ee7b399 /user/modules | |
parent | af91a31eb5ccb46e605aa9b6cf1e792590409ef6 (diff) | |
download | nixfiles-644a368c03c92e3a8dd451855bef0465b04619e6.tar.lz nixfiles-644a368c03c92e3a8dd451855bef0465b04619e6.tar.zst nixfiles-644a368c03c92e3a8dd451855bef0465b04619e6.zip |
zsh: import zplugin to home-manager
Diffstat (limited to 'user/modules')
-rw-r--r-- | user/modules/zsh.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/user/modules/zsh.nix b/user/modules/zsh.nix index 9ace6f75..89faa1a8 100644 --- a/user/modules/zsh.nix +++ b/user/modules/zsh.nix @@ -17,6 +17,17 @@ source = ../zsh/.config/zsh; }; + home.file.".zplugin/bin" = { + recursive = true; + source = pkgs.fetchFromGitHub { + owner = "zdharma"; + repo = "zplugin"; + rev = "028b1e1d6d3eae204b499c7f815f4eeeb5051517"; + sha256 = "1ynh323905iia3gwi9qghbywp94x306nna1yqk37frj5g7kg90fa"; + }; + onChange = "${pkgs.zsh}/bin/zsh -c 'zcompile $HOME/.zplugin/bin/zplugin.zsh'"; + }; + programs.zsh = { enable = true; |