This commit is contained in:
opal
2021-12-26 10:01:38 -08:00
parent d9ed862089
commit 58ea236fbe
12 changed files with 1644 additions and 49 deletions

View File

@@ -3,11 +3,14 @@
Nyxt is a browser written in Common Lisp that follows the same philosophy of extensibility as Emacs. This makes it a perfect companion to an Emacs centered eco-system when you need a browser with more features than Eww or w3m.
* Load Quicklisp
* Load Quicklisp & Slynk
#+begin_src lisp
(in-package :nyxt)
(load "~/quicklisp/setup.lisp")
(ql:quickload 'slynk)
;; (load "~/quicklisp/setup.lisp")
;; (ql:quickload 'slynk)
;; (push #p"~/common-lisp/sly/" asdf:*central-registry*)
(asdf:load-system :slynk)
;; (slynk:create-server :port 4008)
#+end_src
* Import Functions
#+begin_src lisp