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
| # Lines configured by zsh-newuser-install | |
| HISTFILE=~/.histfile | |
| HISTSIZE=1000 | |
| SAVEHIST=1000 | |
| bindkey -v | |
| #bindkey "^W" backward-kill-word # vi-backward-kill-word | |
| #bindkey "^H" backward-delete-char # vi-backward-delete-char | |
| #bindkey "^U" kill-line # vi-kill-line | |
| bindkey -rpM viins '^[' | |
| bindkey "^?" backward-delete-char # vi-backward-delete-char |
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
| export EDITOR=vim | |
| export GOROOT=$HOME/go | |
| export GOOS=linux | |
| export GOARCH=amd64 | |
| export GOBIN=$GOROOT/bin | |
| export GOPATH=$HOME/gocode | |
| PATH="$GOBIN:$GOPATH/bin:$PATH" | |
| PATH="/home/jonathan/.gem/ruby/1.9.1/bin:$PATH" |
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
| # Lines configured by zsh-newuser-install | |
| HISTFILE=~/.histfile | |
| HISTSIZE=1000 | |
| SAVEHIST=1000 | |
| bindkey -e | |
| # End of lines configured by zsh-newuser-install | |
| # The following lines were added by compinstall | |
| zstyle :compinstall filename '/home/jonathan/.zshrc' | |
| autoload -Uz compinit |
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
| export GOROOT=$HOME/go | |
| export GOOS=linux | |
| export GOARCH=amd64 | |
| export GOBIN=$GOROOT/bin | |
| export GOPATH=$HOME/gocode | |
| PATH="$GOBIN:$GOPATH/bin:$PATH" | |
| PATH="$HOME/bin:$PATH" |
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
| export GOROOT=$HOME/go | |
| export GOOS=linux | |
| export GOARCH=amd64 | |
| export GOBIN=$GOROOT/bin | |
| export GOPATH=$HOME/mygo | |
| PATH="$GOBIN:$GOPATH/bin:$PATH" | |
| PATH="$HOME/bin:$PATH" |
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
| # Lines configured by zsh-newuser-install | |
| HISTFILE=~/.histfile | |
| HISTSIZE=1000 | |
| SAVEHIST=1000 | |
| bindkey -e | |
| # End of lines configured by zsh-newuser-install | |
| # The following lines were added by compinstall | |
| zstyle :compinstall filename '/home/jonathan/.zshrc' | |
| autoload -Uz compinit |
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
| [ui] | |
| username = Jonathan Chan <jchan@putgen.com> | |
| ssh = ssh -C | |
| [extensions] | |
| bookmarks = | |
| graphlog = | |
| fetch = |
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
| #!/bin/bash | |
| # Installation directory - change this to a directory of your choice | |
| # Please make sure the directory exists first, or the script won't work | |
| INSTALLDIR=$HOME | |
| # Development channel to use. 'dev', 'beta' or 'stable'. 'stable' does | |
| # not appear to work. | |
| USECHANNEL="beta" |
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
| #!/bin/bash | |
| killall xfce4-panel | |
| sleep 5 | |
| xfce4-panel & |
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
| #!/bin/bash | |
| # Installation directory - change this to a directory of your choice | |
| # Please make sure the directory exists first, or the script won't work | |
| INSTALLDIR=$HOME | |
| # Determine the architecture of the machine in use and set variables accordingly | |
| if [ -z "$ARCH" ]; then | |
| case "$( uname -m )" in | |
| i686) ARCH=i686 ;; |