dotfiles/.zshrc
Devon Tingley 2b772c13b5 Update for i3
also use symlinks
2021-09-22 08:44:38 -04:00

30 lines
520 B
Bash

if [[ "$(uname)" == "Darwin" ]]; then
export ZSH="/Users/$(whoami)/.oh-my-zsh"
elif [[ "$(expr substr $(uname -s) 1 5)" == "Linux" ]]; then
export ZSH="/home/$(whoami)/.oh-my-zsh"
fi
ZSH_THEME="robbyrussell"
ZSH_DISABLE_COMPFIX="true"
plugins=(
git
z
zsh-autosuggestions
sudo
thefuck
redis-cli
golang
docker
docker-compose
cargo
rustup
python
yarn
)
export GDK_SCALE=2
export GDK_DPI_SCALE=0.5
export QT_AUTO_SCREEN_SCALE_FACTOR=1
source $ZSH/oh-my-zsh.sh