myconfig

my config files
git clone https://a3nm.net/git/myconfig/
Log | Files | Refs | README

commit 6479fded3ba5e22fce196c35766fb268b3589075
parent b74b1a46a8b2bb1f966e4ed5b4eb98330dd313e2
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Wed,  1 Apr 2020 22:45:42 +0200

more paths for local installs

Diffstat:
zsh/path | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/zsh/path b/zsh/path @@ -1,9 +1,13 @@ #!/bin/bash -PATH=~/bin_private:~/bin:~/local/bin/:$PATH:/sbin:/usr/sbin:~/.subuser/bin +PATH=~/bin_private:~/bin:~/local/bin/:~/local/usr/bin/:~/local/usr/local/bin:$PATH:/sbin:/usr/sbin:~/.subuser/bin export PATH -LD_LIBRARY_PATH=~/local/lib:/usr/local/lib/x86_64-linux-gnu/:$LD_LIBRARY_PATH +LD_LIBRARY_PATH=~/local/lib:~/local/usr/lib:~/local/usr/local/lib:/usr/local/lib/x86_64-linux-gnu/:$LD_LIBRARY_PATH export LD_LIBRARY_PATH +C_INCLUDE_PATH=~/local/usr/include:~/local/usr/local/include:$C_INCLUDE_PATH +export C_INCLUDE_PATH +CPP_INCLUDE_PATH=~/local/usr/include:~/local/usr/local/include:$CPP_INCLUDE_PATH +export CPP_INCLUDE_PATH MANPATH=~/local/share/man:$MANPATH export MANPATH INFOPATH=~/local/share/info:$INFOPATH