fatal: this commit has no parent

This commit is contained in:
Grigory Shipunov 2020-06-01 14:14:26 +02:00
commit f7be401dda
No known key found for this signature in database
GPG key ID: 77BB6C3E4771EE7C
12 changed files with 1843 additions and 0 deletions

14
.zprofile Normal file
View file

@ -0,0 +1,14 @@
export EDITOR="vi"
export VISUAL="nvim"
# platform-specific config
unamestr=$(uname 2> /dev/null)
case "$unamestr" in
"Darwin")
export GPG_TTY=$(tty)
export PATH=$HOME/bin:/Library/TeX/texbin:/usr/local/bin:$PATH
export HOMEBREW_NO_GITHUB_API=1
;;
"Linux")
;;
esac