This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Encrypt the repository | |
# Remove/modify this line if the repository is meant to be open-source | |
*.* filter=git-crypt diff=git-crypt | |
.gitattributes !filter !diff | |
# These files are text and should be normalized (Convert crlf => lf) | |
*.php text | |
*.css text | |
*.js text | |
*.htm text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install zsh-5.0.0 | |
# prerequisite: gcc ncurses-devel readline-devel pcre-devel zlib-devel | |
curl -L http://jaist.dl.sourceforge.net/project/zsh/zsh/5.0.5/zsh-5.0.5.tar.bz2 | tar jx | |
cd zsh-5.0.5/ | |
./configure --prefix=/usr/local/zsh/5.0.5 --enable-cap --enable-pcre --enable-multibyte | |
make | |
sudo make install | |
sudo alternatives --install /usr/local/bin/zsh zsh /usr/local/zsh/5.0.5/bin/zsh 50000 |