Closed KiaraGrouwstra closed 5 months ago
Have you tried this with other plugins? I seem to be seeing the same behavior from powerlevel10k. From what I can see it looks that these packages are not being downloaded to the /nix/store/
@Gashmore1 i can reproduce with powerlevel10k
as well yeah, even when explicitly installing the packages. programs.zsh.oh-my-zsh.plugins
appears to work with their listed plugins, so that one might be expected behavior.
not sure about programs.zsh.plugins
tho.
That HM config doesn't look right. You'll need something like this:
{ pkgs, ... }:
{
programs.zsh = {
enable = true;
plugins = [
rec { # rec makes things a bit easier to read
name = "history-search-multi-word";
src = pkgs.zsh-history-search-multi-word;
file = "share/zsh/zsh-${name}/${name}.plugin.zsh";
}
];
};
}
Further reading:
hi there, i found nixpkgs has a package
zsh-history-search-multi-word
, but i cannot figure out how to use it.Describe the bug
i cannot get this plugin to both build and load
Steps To Reproduce
i tried:
which upon build yields:
which upon opening a
zsh
shell yields:(similar if you prepend with
zsh-
.)Expected behavior
plugin builds and loads
Screenshots
n/a
Additional context
n/a
Notify maintainers
@sei40kr @pSub @Artturin
Metadata
Please run
nix-shell -p nix-info --run "nix-info -m"
and paste the result.i only use flakes, in this case: