dotfiles/.zshrc

31 lines
520 B
Bash
Raw Normal View History

2020-08-07 02:31:18 +00:00
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
2020-08-07 01:55:01 +00:00
ZSH_THEME="robbyrussell"
2020-08-07 02:31:18 +00:00
ZSH_DISABLE_COMPFIX="true"
2020-08-07 01:55:01 +00:00
plugins=(
git
z
zsh-autosuggestions
sudo
thefuck
redis-cli
golang
docker
docker-compose
cargo
rustup
python
yarn
2020-08-07 01:55:01 +00:00
)
2021-09-22 12:44:38 +00:00
export GDK_SCALE=2
export GDK_DPI_SCALE=0.5
export QT_AUTO_SCREEN_SCALE_FACTOR=1
2020-08-07 01:55:01 +00:00
source $ZSH/oh-my-zsh.sh