From 074b29c7a1d52672af35738d538b497212035302 Mon Sep 17 00:00:00 2001 From: Leonora Tindall Date: Mon, 7 Oct 2024 07:37:39 -0500 Subject: [PATCH] Configure NOTESDIR, and add NOTESDIR/bin to PATH --- zsh.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zsh.nix b/zsh.nix index f931150..ea815c0 100644 --- a/zsh.nix +++ b/zsh.nix @@ -19,7 +19,8 @@ export fpath=(~/.zsh/functions $fpath) autoload -U compinit && compinit fi - export PATH="$HOME/.bin:$HOME/.local/bin:$PATH" + export NOTESDIR="$HOME/Notes" + export PATH="$HOME/.bin:$HOME/.local/bin:$NOTESDIR/bin:$PATH" fortune ''; };