From 4419ce90b13a708435e1d4eb04a03229b8298827 Mon Sep 17 00:00:00 2001 From: David JULIEN Date: Mon, 26 Dec 2022 19:07:58 +0100 Subject: [PATCH] [system] cleanup: export PATH in the right place --- .config/zsh/.zprofile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile index a0783b6..aec055e 100644 --- a/.config/zsh/.zprofile +++ b/.config/zsh/.zprofile @@ -1,10 +1,11 @@ #!/bin/zsh # This file is sourced when launching a DM from startx/xinit -# path -export PATH="$(find $HOME/.local/bin -type d | tr '\n' ':' | sed 's/:$//'):$PATH" # environment variables +## path +export PATH="$(find $HOME/.local/bin -type d | tr '\n' ':' | sed 's/:$//'):$PATH" + ## custom paths export DOTFILES="$HOME/.dotfiles.git" export LATEX_RESOURCES="$HOME/documents/latex"