emacs/lang/common-lisp.el
Maciej Szlosarczyk 1f1d488cda
Some checks are pending
/ Test config on ${{matrix.node}} (20) (push) Waiting to run
Move all the way up to company-yasnippet
2024-07-27 09:42:48 +03:00

23 lines
556 B
EmacsLisp

;;; common-lisp.el --- summary -*- lexical-binding: t; -*-
;; Author: Maciej Szlosarczyk
;; Maintainer: Maciej Szlosarczyk
;; Version: 0.1-snapshot
;;; Commentary:
;;; Code:
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
(require 'icejam-company-yasnippet)
(use-package slime :straight t)
(use-package slime-company :straight t
:requires (slime company))
(setq inferior-lisp-program "sbcl")
(slime-setup '(slime-fancy slime-company slime-quicklisp slime-asdf))
(provide '+custom-lang-common-lisp)
;;; common-lisp.el ends here