Klimi's new dotfiles with stow.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

20 rindas
690 B

pirms 4 gadiem
  1. ;;; This file is intended to be loaded by an implementation to
  2. ;;; get a running swank server
  3. ;;; e.g. sbcl --load start-swank.lisp
  4. ;;;
  5. ;;; Default port is 4005
  6. ;;; For additional swank-side configurations see
  7. ;;; 6.2 section of the Slime user manual.
  8. (load (merge-pathnames "swank-loader.lisp" *load-truename*))
  9. (swank-loader:init
  10. :delete nil ; delete any existing SWANK packages
  11. :reload nil ; reload SWANK, even if the SWANK package already exists
  12. :load-contribs nil) ; load all contribs
  13. (swank:create-server :port 4005
  14. ;; if non-nil the connection won't be closed
  15. ;; after connecting
  16. :dont-close nil)