Last active
October 27, 2016 13:52
-
-
Save 5alamander/1c12745a03ba4eb394bdf88d8e498ea3 to your computer and use it in GitHub Desktop.
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
# bash proxy | |
# export HTTP_PROXY=http://127.0.0.1:16823/ | |
# export http_proxy=http://127.0.0.1:16823/ | |
# export HTTPS_PROXY=https://127.0.0.1:16823/ | |
# export https_proxy=https://127.0.0.1:16823/ | |
# export ALL_PROXY=http://127.0.0.1:16823/ | |
# export all_proxy=https://127.0.0.1:16823/ | |
# go path | |
export GOROOT=/usr/local/opt/go/libexec | |
export GOPATH=$HOME/go | |
export PATH=$PATH:$GOPATH/bin | |
# use zsh | |
zsh |
install https://www.quicklisp.org/beta/
- asdf2: set the default load path to “~/src/lisp/”
- with file
- ~/.config/common-lisp/source-registry.conf.d/projects.conf
- with contents
- (:tree (:home “src/lisp/”))
- quicklisp install package
- (ql:quickload :package-name) ;; local or from internet
- quicklisp projects
- (ql:quickload :quickproject)
- (quickproject:make-project :name)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment