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