diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-12-16 20:39:35 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-12-16 20:39:35 -0500 |
| commit | 0bf96d85209e07711ff99bd6df2d0befc4d40f44 (patch) | |
| tree | 134ecc59c07af56531b860d78ecfe4a3640c688b /home/zsh/default.nix | |
| parent | remove many programs dotfiles from homedir (diff) | |
| download | dotfiles-nix-0bf96d85209e07711ff99bd6df2d0befc4d40f44.tar.gz dotfiles-nix-0bf96d85209e07711ff99bd6df2d0befc4d40f44.tar.bz2 dotfiles-nix-0bf96d85209e07711ff99bd6df2d0befc4d40f44.zip | |
make zshrc load much faster
Diffstat (limited to 'home/zsh/default.nix')
| -rw-r--r-- | home/zsh/default.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/home/zsh/default.nix b/home/zsh/default.nix index f6706af..92fd0ce 100644 --- a/home/zsh/default.nix +++ b/home/zsh/default.nix @@ -11,14 +11,17 @@ highlight = "fg=#${config.theme.colors.subtext}"; }; syntaxHighlighting.enable = true; + dotDir = "${config.xdg.configHome}/zsh"; + + # update conf history.size = 10000; profileExtra = lib.fileContents ./zprofile; initContent = lib.fileContents ./zshrc; - dotDir = "${config.xdg.configHome}/zsh"; + completionInit = ""; }; programs.zoxide = { enable = true; - enableZshIntegration = true; + enableZshIntegration = false; }; } |