Pulled zsh/vim/bash/htop/neofetch configs into server/<host>/. Excluded secrets (.ssh/.kube/.docker/.ansible), shell/editor caches, and vendored upstream frameworks (oh-my-zsh, Vundle plugins) per dotfiles best practice; reinstall steps documented in README.md.
12 lines
195 B
Bash
12 lines
195 B
Bash
ZSH_DISABLE_COMPFIX=true
|
|
|
|
export ZSH=$HOME/.oh-my-zsh
|
|
|
|
ZSH_THEME="agnoster"
|
|
export TERM=xterm-256color
|
|
|
|
plugins=(git docker docker-compose zsh-autosuggestions kubectl)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|