Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 1.29 KB

README.md

File metadata and controls

40 lines (24 loc) · 1.29 KB

Mauro Tortonesi's Zsh Configuration

This is my Zsh configuration. I took Mark Tran's awesome configuration, changed it heavily to suit my needs (that is, I reconfigured the prompt, added support for rbenv, configured Vi mode for ZLE, etc.) and added an Oh-My-Zsh-inspired automated installation procedure.

Installation

Warning: these instructions assume that Zsh is already installed somewhere in your PATH. Also note that this configuration leverages the fantastic powerlevel10k prompt configuration tool, so you are going to need that as well.

Automated installation procedure

Be careful, this is currently untested.

You can automatically install my Zsh configuration using either wget:

wget --no-check-certificate https://github.com/mtortonesi/dotzsh/raw/master/install/install.sh -O - | sh

or curl:

curl -L https://github.com/mtortonesi/dotzsh/raw/master/install/install.sh | sh

Manual installation procedure

Very, very simple:

git clone https://github.com/mtortonesi/dotzsh.git
ln -s dotzsh/.zsh.d  ~/.zsh.d
ln -s dotzsh/.zshenv ~/.zshenv
chsh -s $(which zsh)