zsh: bundle plugins within our config
This commit is contained in:
parent
80e71ca547
commit
f7eda8ca1c
|
@ -39,21 +39,48 @@ in
|
||||||
nixos-option = "nixos-option -I nixpkgs=${self}/lib/compat";
|
nixos-option = "nixos-option -I nixpkgs=${self}/lib/compat";
|
||||||
myip = "dig +short myip.opendns.com @208.67.222.222 2>&1";
|
myip = "dig +short myip.opendns.com @208.67.222.222 2>&1";
|
||||||
};
|
};
|
||||||
zplug = {
|
|
||||||
enable = true;
|
|
||||||
plugins = [
|
plugins = [
|
||||||
{
|
{
|
||||||
name = "plugins/z";
|
# will source ohmyzsh/plugins/z/
|
||||||
tags = [ "from:oh-my-zsh" ];
|
name = "zsh-plugins-z";
|
||||||
|
file = "plugins/z/z.sh";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "ohmyzsh";
|
||||||
|
repo = "ohmyzsh";
|
||||||
|
rev = "master";
|
||||||
|
sha256 = "sha256-NAVotL5RxpS/zKnO+ngMIjv787lqc1dj/c4blQrQcvU=";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "romkatv/powerlevel10k";
|
name = "zsh-powerlevel10k";
|
||||||
tags = [ "as:theme" "depth:1" ];
|
file = "powerlevel10k.zsh-theme";
|
||||||
}
|
src = pkgs.fetchFromGitHub {
|
||||||
{ name = "zdharma/fast-syntax-highlighting"; }
|
owner = "romkatv";
|
||||||
{ name = "chisui/zsh-nix-shell"; }
|
repo = "powerlevel10k";
|
||||||
];
|
rev = "master";
|
||||||
|
sha256 = "sha256-0pzkKPdzyQXTe8usaSaM1Iivi2UHQrSJrh5V2pRdiGg=";
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "zsh-fast-syntax-highlighting";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "zdharma";
|
||||||
|
repo = "fast-syntax-highlighting";
|
||||||
|
rev = "master";
|
||||||
|
sha256 = "sha256-uoLrXfq31GvfHO6GTrg7Hus8da2B4SCM1Frc+mRFbFc=";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "zsh-nix-shell";
|
||||||
|
file = "nix-shell.plugin.zsh";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "chisui";
|
||||||
|
repo = "zsh-nix-shell";
|
||||||
|
rev = "master";
|
||||||
|
sha256 = "sha256-BjgMhILEL/qdgfno4LR64LSB8n9pC9R+gG7IQWwgyfQ=";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
bindkey -v
|
bindkey -v
|
||||||
|
|
Loading…
Reference in a new issue