macOS version: 10.15.6
- Install MacTex with Homebrew
brew cask install mactex-no-gui
- Updating the packages
sudo tlmgr update --self && sudo tlmgr update --all
macOS version: 10.15.6
brew cask install mactex-no-gui
sudo tlmgr update --self && sudo tlmgr update --all
# git aliases - taken from oh-my-zsh's git plugin and translated to bash | |
# https://github.com/robbyrussell/oh-my-zsh/wiki/Cheatsheet#helpful-aliases-for-common-git-tasks | |
# https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/git/git.plugin.zsh | |
function git_current_branch() { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || \ | |
ref=$(git rev-parse --short HEAD 2> /dev/null) || return | |
echo ${ref#refs/heads/} | |
} | |
function git_current_repository() { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || \ |