mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
Replace individual setopt statements with array-based loops for cfg.setOptions. Use lib.hm.zsh.define for consistent array formatting and add unset statements to clean up temporary variables, improving consistency with other zsh optimizations. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
23 lines
1.1 KiB
Nix
23 lines
1.1 KiB
Nix
{
|
|
zsh-abbr = ./zsh-abbr.nix;
|
|
zsh-aliases = ./aliases.nix;
|
|
zsh-dotdir-absolute = import ./dotdir.nix "absolute";
|
|
zsh-dotdir-default = import ./dotdir.nix "default";
|
|
zsh-dotdir-relative = import ./dotdir.nix "relative";
|
|
zsh-dotdir-shell-variable = import ./dotdir.nix "shell-variable";
|
|
zsh-history-ignore-pattern = ./history-ignore-pattern.nix;
|
|
zsh-history-path-absolute = import ./history-path.nix "absolute";
|
|
zsh-history-path-default = import ./history-path.nix "default";
|
|
zsh-history-path-relative = import ./history-path.nix "relative";
|
|
zsh-history-path-xdg-variable = import ./history-path.nix "xdg-variable";
|
|
zsh-history-path-zdotdir-variable = import ./history-path.nix "zdotdir-variable";
|
|
zsh-history-substring-search = ./history-substring-search.nix;
|
|
zsh-siteFunctions-mkcd = ./siteFunctions-mkcd.nix;
|
|
zsh-plugins = ./plugins.nix;
|
|
zsh-prezto = ./prezto.nix;
|
|
zsh-session-variables = ./session-variables.nix;
|
|
zsh-smart-formatting = ./smart-formatting.nix;
|
|
zsh-syntax-highlighting = ./syntax-highlighting.nix;
|
|
zsh-zprof = ./zprof.nix;
|
|
zshrc-contents-priorities = ./zshrc-content-priorities.nix;
|
|
}
|