Skip to content

Instantly share code, notes, and snippets.

@5alamander
Last active October 27, 2016 13:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 5alamander/1c12745a03ba4eb394bdf88d8e498ea3 to your computer and use it in GitHub Desktop.
Save 5alamander/1c12745a03ba4eb394bdf88d8e498ea3 to your computer and use it in GitHub Desktop.
# 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

My Dot files

quicklisp settings

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