Skip to content

Instantly share code, notes, and snippets.

@iori-yja
iori-yja / .zshrc
Created January 7, 2012 19:57
zsh configuration
# Created by newuser for 4.3.10
HISTFILE=~/.zsh_history
HISTSIZE=10000
SAVEHIST=10000
setopt hist_ignore_dups # ignore duplication command history list
setopt share_history # share command history data
bindkey -v
setopt auto_cd
setopt auto_pushd
setopt list_packed
@iori-yja
iori-yja / bootstrap.sh
Created January 1, 2012 06:38
cabal0.10.2 bootstrap for ghc7.2 on Linux
#!/bin/sh
# A script to bootstrap cabal-install.
# It works by downloading and installing the Cabal, zlib and
# HTTP packages. It then installs cabal-install itself.
# It expects to be run inside the cabal-install directory.
# install settings, you can override these by setting environment vars
PREFIX=${PREFIX:-${HOME}/.cabal}