Latest posts by Edvin Dunaway (see all)
- Streamlining the setup of a new user workspace on Ubuntu/Fedora - October 24, 2019
- Backups with rdiff-backup and mysqldump - October 19, 2019
- Manage dotfiles with the GNU stow command - September 30, 2019
I switched from using bash to zsh as my main shell environment and never looked back. You can find my .zshrc config file with Oh-My-ZSH enabled on GitHub
# Theme
ZSH_THEME="agnoster"
# My .zshrc plugin list
plugins=(
  git
  dotenv
  rake
  ruby
  ansible
  autoenv
  autopep8
  docker
  docker-compose
  docker-machine
  django
  git-prompt
  gnu-utils
  man
  nmap
  npm
  pip
  pipenv
  pyenv
  pylint
  python
  rsync
  sudo
  systemd
  ubuntu
  virtualenv
  vscode
)
 
			