fixed .gitignore
This commit is contained in:
18
Nyxt.org
18
Nyxt.org
@@ -3,15 +3,19 @@
|
||||
|
||||
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
|
||||
#+begin_src emacs-lisp
|
||||
(load "~/quicklisp/setup.lisp")
|
||||
(ql:quickload 'slynk)
|
||||
;; #-quicklisp
|
||||
;; (let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
|
||||
;; (user-homedir-pathname))))
|
||||
;; (when (probe-file quicklisp-init)
|
||||
;; (load quicklisp-init)))
|
||||
#+end_src
|
||||
* Start Slynk server
|
||||
#+begin_src lisp
|
||||
(ql:quickload 'slynk)
|
||||
|
||||
(define-command-global start-slynk (&optional (slynk-port *swank-port*))
|
||||
"Start a Slynk server."
|
||||
(slynk:create-server :port slynk-port :dont-close t)
|
||||
(echo "Slynk server started at port ~a" slynk-port))
|
||||
(load-after-system :slynk "~/.config/nyxt/my-slynk.lisp")
|
||||
#+end_src
|
||||
|
||||
* Keybindings
|
||||
|
||||
Reference in New Issue
Block a user