make dotfiles stow-able
This commit is contained in:
parent
242fc85911
commit
2a0b443bc5
16 changed files with 0 additions and 0 deletions
19
zsh/.zprofile
Normal file
19
zsh/.zprofile
Normal file
|
@ -0,0 +1,19 @@
|
|||
# PATH manipulation
|
||||
## for pipx
|
||||
export PATH=$HOME/.local/bin:$PATH
|
||||
|
||||
# QoL aliases
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue