This file contains hidden or 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
xdebug.default_enable=1 | |
xdebug.remote_enable=1 | |
xdebug.remote_handler=dbgp | |
xdebug.remote_host=33.33.33.1 | |
xdebug.remote_port=9000 | |
xdebug.remote_autostart=1 | |
xdebug.remote_connect_back=1 |
This file contains hidden or 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
1) List all the commands to not be corrected in ~/.zsh_nocorrect, 1 per line. | |
2) Add to ~/.zshrc: | |
if [ -f ~/.zsh_nocorrect ]; then | |
while read -r COMMAND; do | |
alias $COMMAND="nocorrect $COMMAND" | |
done < ~/.zsh_nocorrect | |
fi |
This file contains hidden or 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
background yes | |
use_xft yes | |
xftfont 123:size=8 | |
xftalpha 0.1 | |
update_interval 0.5 | |
total_run_times 0 | |
own_window yes | |
own_window_type override | |
own_window_transparent yes | |
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager |
This file contains hidden or 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
background = default default | |
frame = default default | |
window_title = default default | |
directory = cyan default | |
selected_directory = cyan white reverse | |
playlist = default default | |
selected_playlist = default default reverse | |
file = default default | |
selected_file = default default reverse | |
marked_file = cyan default bold |
This file contains hidden or 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
#first install the compiler | |
yum install gcc gcc-c++ autoconf automake | |
#install zlib-devel as it's a dependency | |
yum install zlib-devel | |
#then get and build git from source | |
cd /usr/lib | |
wget "http://kernel.org/pub/software/scm/git/git-1.6.1.2.tar.gz" | |
tar xzvf git-1.6.1.2.tar.gz |