fix(lisp): Don't set any Sly-mrepl hook settings
For some reason the Sly-mrepl hooks aren't available until a REPL has actually been launched once. There doesn't seem to be a library that I can require to fix it, either, so until I have time to figure it out it stays commented out.
This commit is contained in:
parent
11eed83d57
commit
536bdb40f3
2 changed files with 2 additions and 6 deletions
|
|
@ -1,6 +1,8 @@
|
|||
;; lisp-settings.el - settings for various Lisp dialects
|
||||
;; -*- lexical-binding: t; -*-
|
||||
|
||||
(require 'sly)
|
||||
|
||||
;; All the lisps:
|
||||
|
||||
(add-to-list 'lisp-mode-hook #'company-mode)
|
||||
|
|
@ -14,10 +16,5 @@
|
|||
(setq inferior-lisp-program (concat (nix-store-path "sbcl") "/bin/sbcl"))
|
||||
|
||||
(add-to-list 'company-backends 'sly-company)
|
||||
(add-to-list 'sly-mrepl-mode-hook #'paredit-mode)
|
||||
(add-to-list 'sly-mrepl-mode-hook #'company-mode)
|
||||
|
||||
(define-key sly-mrepl-mode-map (kbd "TAB")
|
||||
#'company-indent-or-complete-common)
|
||||
|
||||
(provide 'lisp-setup)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue