Skip to content

Instantly share code, notes, and snippets.

@elderica
Created February 25, 2024 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elderica/987424e14404fe9a01839472f32e6433 to your computer and use it in GitHub Desktop.
Save elderica/987424e14404fe9a01839472f32e6433 to your computer and use it in GitHub Desktop.
Common Lisp IDE
;;; init.el --- init.el -*- lexical-binding: t; -*-
(eval-and-compile
(customize-set-variable
'package-archives
'(("org" . "https://orgmode.org/elpa/")
("melpa" . "https://melpa.org/packages/")
("gnu" . "https://elpa.gnu.org/packages/")))
(package-initialize))
(customize-set-variable
'custom-file
(locate-user-emacs-file "custom.el"))
(when (file-exists-p custom-file)
(load custom-file))
(customize-set-variable 'indent-tabs-mode nil)
(delete-selection-mode 1)
(customize-set-variable 'show-paren-style 'mixed)
(show-paren-mode 1)
(fido-vertical-mode 1)
(unless (package-installed-p 'sly)
(package-install 'sly))
(eval-after-load 'sly
(customize-set-variable
'inferior-lisp-program
"sbcl --noinform --no-sysinit"))
(provide 'init)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment