35 lines
941 B
Plaintext
35 lines
941 B
Plaintext
|
source ~/.dotfiles/symlinks/profile.common
|
||
|
|
||
|
export MACHINE_TYPE='mac'
|
||
|
|
||
|
# PATHS
|
||
|
export PATH="$PATH:$HOME/Library/Android/sdk/platform-tools/"
|
||
|
export PATH="$PATH:$HOME/Library/Android/sdk/tools/bin"
|
||
|
|
||
|
# HomeBrew
|
||
|
export PATH=~/homebrew/bin:$PATH
|
||
|
|
||
|
# dotnet
|
||
|
export PATH=$PATH:/usr/local/share/dotnet
|
||
|
|
||
|
# latexindent
|
||
|
export PATH="~/LaTeX/latexindent:$PATH"
|
||
|
export PATH="~/Latex/lindent:$PATH"
|
||
|
|
||
|
PATH="~/perl5/bin${PATH:+:${PATH}}"; export PATH;
|
||
|
PERL5LIB="~/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
|
||
|
PERL_LOCAL_LIB_ROOT="~/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
|
||
|
PERL_MB_OPT="--install_base \"~/perl5\""; export PERL_MB_OPT;
|
||
|
PERL_MM_OPT="INSTALL_BASE=~/perl5"; export PERL_MM_OPT;
|
||
|
|
||
|
# Flutter
|
||
|
export PATH="~/Applications/flutter/bin:$PATH"
|
||
|
|
||
|
export PATH="$PATH:/usr/local/opt/llvm/bin"
|
||
|
|
||
|
|
||
|
# Local aliases and variables
|
||
|
if [ -f "$HOME/.profile.local" ]; then
|
||
|
source $HOME/.profile.local
|
||
|
fi
|