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
| # 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 |
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/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} |
NewerOlder