adding sly connection keybinds
This commit is contained in:
parent
d262d19ed9
commit
f61c8c2537
10
README.org
10
README.org
|
@ -3697,7 +3697,15 @@ Using sly makes a lot better common-lisp interaction within emacs.
|
|||
(defun chris/start-nyxt-repl ()
|
||||
"Start the repl and sly connection for nyxt"
|
||||
(interactive)
|
||||
(sly-connect "localhost" 4006)))
|
||||
(sly-connect "localhost" 4006))
|
||||
:general
|
||||
(chris/leader-keys
|
||||
:states 'normal
|
||||
:keymaps 'lisp-mode-shared-map
|
||||
"os" 'sly)
|
||||
|
||||
(general-def 'normal lisp-mode-shared-map
|
||||
"gcr" 'sly))
|
||||
#+end_src
|
||||
|
||||
** PDF-Tools
|
||||
|
|
10
init.el
10
init.el
|
@ -2754,7 +2754,15 @@ targets."
|
|||
(defun chris/start-nyxt-repl ()
|
||||
"Start the repl and sly connection for nyxt"
|
||||
(interactive)
|
||||
(sly-connect "localhost" 4006)))
|
||||
(sly-connect "localhost" 4006))
|
||||
:general
|
||||
(chris/leader-keys
|
||||
:states 'normal
|
||||
:keymaps 'lisp-mode-shared-map
|
||||
"os" 'sly)
|
||||
|
||||
(general-def 'normal lisp-mode-shared-map
|
||||
"gcr" 'sly))
|
||||
|
||||
(use-package pdf-tools
|
||||
:mode ("\\.pdf\\'" . pdf-view-mode)
|
||||
|
|
Loading…
Reference in a new issue