fixed .gitignore

This commit is contained in:
opal
2021-12-24 12:34:12 -08:00
parent 2f4f1f4127
commit a3c2b64294
7 changed files with 323 additions and 7 deletions

View File

@@ -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