From 23ab34ae6963104fc3002a1ccd823241bfa28be3 Mon Sep 17 00:00:00 2001 From: Leonora Tindall Date: Thu, 29 Aug 2024 15:41:12 -0500 Subject: [PATCH] Add .bin, .local/bin to path, turn off autosuggest (we have atuin) --- zsh.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zsh.nix b/zsh.nix index dd465a2..c733227 100644 --- a/zsh.nix +++ b/zsh.nix @@ -6,13 +6,14 @@ programs.zsh = { enable = true; - autosuggestion.enable = true; + autosuggestion.enable = false; enableCompletion = true; enableVteIntegration = true; initExtra = '' . "$HOME/.cargo/env" export GUIX_PROFILE="/home/nora/.config/guix/current" . "$GUIX_PROFILE/etc/profile" + export PATH="$HOME/.bin:$HOME/.local/bin:$PATH" fortune ''; };