44 lines
1.4 KiB
EmacsLisp
44 lines
1.4 KiB
EmacsLisp
;;; packages.el --- slime Layer packages File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2014 Sylvain Benner
|
|
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
(setq slime-packages
|
|
'(slime))
|
|
|
|
(defun slime/init-slime ()
|
|
(use-package slime
|
|
:commands slime-mode
|
|
:init
|
|
(progn
|
|
(setq slime-contribs '(slime-fancy
|
|
slime-indentation
|
|
slime-sbcl-exts
|
|
slime-scratch)
|
|
inferior-lisp-program "sbcl")
|
|
|
|
;; enable fuzzy matching in code buffer and SLIME REPL
|
|
(setq slime-complete-symbol*-fancy t)
|
|
(setq slime-complete-symbol-function 'slime-fuzzy-complete-symbol)
|
|
|
|
;; enabel smartparen in code buffer and SLIME REPL
|
|
;; (add-hook 'slime-repl-mode-hook #'smartparens-strict-mode)
|
|
(defun slime/disable-smartparens ()
|
|
(smartparens-strict-mode -1)
|
|
(turn-off-smartparens-mode))
|
|
|
|
(add-hook 'slime-repl-mode-hook #'slime/disable-smartparens)
|
|
|
|
(add-to-hooks 'slime-mode '(lisp-mode-hook scheme-mode-hook)))
|
|
:config
|
|
(message "loading slime...")
|
|
(slime-setup)
|
|
(dolist (m `(,slime-mode-map ,slime-repl-mode-map))
|
|
(define-key m [(tab)] 'slime-fuzzy-complete-symbol))))
|