trying out sly

This commit is contained in:
opfez 2021-05-27 17:51:41 +02:00
parent fe7ca6b0b4
commit 04c5dcd1b2
2 changed files with 7 additions and 2 deletions

View File

@ -74,6 +74,9 @@
(global-set-key (kbd "C-c t") 'fez/time-stamp) (global-set-key (kbd "C-c t") 'fez/time-stamp)
;; zap-up-to-char > zap-to-char
(global-set-key (kbd "M-z") 'zap-up-to-char)
;; Binds for switching between light and dark themes. ;; Binds for switching between light and dark themes.
(global-set-key [f5] (lambda () (global-set-key [f5] (lambda ()
(interactive) (interactive)

View File

@ -37,10 +37,12 @@
(use-package geiser-chez (use-package geiser-chez
:ensure t)) :ensure t))
(use-package slime (use-package sly
:ensure t :ensure t
:config :config
(setq inferior-lisp-program "sbcl")) (setq inferior-lisp-program "sbcl")
(use-package sly-quicklisp
:ensure t))
;; Amazing s-expression editing mode. ;; Amazing s-expression editing mode.
(use-package paredit (use-package paredit