Skip to content

Commit

Permalink
texlive 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
JensDll committed Oct 8, 2024
1 parent 2c398a7 commit f70509b
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 4 deletions.
27 changes: 27 additions & 0 deletions misc/texlive2024profile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
selected_scheme scheme-full
TEXDIR ~/texlive/2024
TEXMFCONFIG ~/.texlive2024/texmf-config
TEXMFHOME ~/texmf
TEXMFLOCAL ~/texlive/2024/texmf-local
TEXMFSYSCONFIG ~/texlive/2024/texmf-config
TEXMFSYSVAR ~/texlive/2024/texmf-var
TEXMFVAR ~/.texlive2024/texmf-var
binary_x86_64-linux 1
instopt_adjustpath 0
instopt_adjustrepo 1
instopt_letter 0
instopt_portable 0
instopt_write18_restricted 1
tlpdbopt_autobackup 1
tlpdbopt_backupdir tlpkg/backups
tlpdbopt_create_formats 1
tlpdbopt_desktop_integration 1
tlpdbopt_file_assocs 1
tlpdbopt_generate_updmap 0
tlpdbopt_install_docfiles 1
tlpdbopt_install_srcfiles 1
tlpdbopt_post_code 1
tlpdbopt_sys_bin /usr/local/bin
tlpdbopt_sys_info /usr/local/share/info
tlpdbopt_sys_man /usr/local/share/man
tlpdbopt_w32_multi_user 1
16 changes: 12 additions & 4 deletions unix/.bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,25 @@ if [[ -f $HOME/.bash_aliases ]]; then
source "$HOME/.bash_aliases"
fi

export NVM_DIR="$HOME/.nvm"
NVM_DIR="$HOME/.nvm"
[[ -s $NVM_DIR/nvm.sh ]] && source "$NVM_DIR/nvm.sh"
[[ -s $NVM_DIR/bash_completion ]] && source "$NVM_DIR/bash_completion"

export PYENV_ROOT="$HOME/.pyenv"
PYENV_ROOT="$HOME/.pyenv"
if [[ -d $PYENV_ROOT ]]; then
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
fi

export GVM_DIR="$HOME/.gvm"
GVM_DIR="$HOME/.gvm"
[[ -s "$GVM_DIR/scripts/gvm" ]] && source "$GVM_DIR/scripts/gvm"

export CPM_SOURCE_CACHE="$HOME/.cache/CPM"
CPM_SOURCE_CACHE="$HOME/.cache/CPM"

if [[ -d $HOME/texlive/2024 ]]; then
PATH="$HOME/texlive/2024/bin/x86_64-linux:$PATH"
INFOPATH="$HOME/texlive/2024/texmf-dist/doc/info:$INFOPATH"
MANPATH="$$HOME/texlive/2024/texmf-dist/doc/man:$MANPATH"
fi

export NVM_DIR PYENV_ROOT GVM_DIR CPM_SOURCE_CACHE PATH INFOPATH MANPATH

0 comments on commit f70509b

Please sign in to comment.