Compare commits
No commits in common. "1f65d2f8f1620b211294cf088cfcd71466b38f4d" and "326a8103cd8c5d564e9db4dd04572eb413cdc688" have entirely different histories.
1f65d2f8f1
...
326a8103cd
|
@ -19,7 +19,7 @@
|
|||
./node.nix
|
||||
./slack.nix
|
||||
./spotify.nix
|
||||
./starship.nix
|
||||
# ./starship.nix
|
||||
./tofi.nix
|
||||
./variety.nix
|
||||
./vscode.nix
|
||||
|
|
|
@ -73,9 +73,9 @@ in
|
|||
initExtraFirst = /*bash*/ ''
|
||||
export ZSH_CACHE_DIR=$HOME/.cache/zsh
|
||||
|
||||
# if [ -f $HOME/.config/zsh/.p10k.zsh ]; then
|
||||
# source $HOME/.config/zsh/.p10k.zsh
|
||||
# fi
|
||||
if [ -f $HOME/.config/zsh/.p10k.zsh ]; then
|
||||
source $HOME/.config/zsh/.p10k.zsh
|
||||
fi
|
||||
|
||||
_ZSH_COLOR_SCHEME_FILE=$HOME/.cache/wallust/sequences
|
||||
if [ -f "$_ZSH_COLOR_SCHEME_FILE" ]; then
|
||||
|
@ -111,6 +111,9 @@ in
|
|||
# switch group using `<` and `>`
|
||||
zstyle ':fzf-tab:*' switch-group '<' '>'
|
||||
''
|
||||
(optionalString config.profile.podman.enable /*bash*/ ''
|
||||
zsh-defer source <(podman completion zsh)
|
||||
'')
|
||||
];
|
||||
|
||||
plugins = [
|
||||
|
@ -119,11 +122,11 @@ in
|
|||
src = pkgs.zsh-fzf-tab;
|
||||
file = "share/fzf-tab/fzf-tab.plugin.zsh";
|
||||
}
|
||||
# {
|
||||
# name = "powerlevel10k";
|
||||
# src = pkgs.zsh-powerlevel10k;
|
||||
# file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
||||
# }
|
||||
{
|
||||
name = "powerlevel10k";
|
||||
src = pkgs.zsh-powerlevel10k;
|
||||
file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
||||
}
|
||||
{
|
||||
name = "auto-suggestions";
|
||||
src = pkgs.zsh-autosuggestions;
|
||||
|
@ -139,11 +142,11 @@ in
|
|||
src = pkgs.zsh-history-substring-search;
|
||||
file = "share/zsh-history-substring-search/zsh-history-substring-search.zsh";
|
||||
}
|
||||
# {
|
||||
# name = "zsh-defer";
|
||||
# src = pkgs.zsh-defer;
|
||||
# file = "share/zsh-defer/zsh-defer.plugin.zsh";
|
||||
# }
|
||||
{
|
||||
name = "zsh-defer";
|
||||
src = pkgs.zsh-defer;
|
||||
file = "share/zsh-defer/zsh-defer.plugin.zsh";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue