Skip to content

Instantly share code, notes, and snippets.

@kawakami-o3
Last active September 8, 2018 08:07
Show Gist options
  • Save kawakami-o3/ad15a086d19a16f66b87cbb5891778f1 to your computer and use it in GitHub Desktop.
Save kawakami-o3/ad15a086d19a16f66b87cbb5891778f1 to your computer and use it in GitHub Desktop.
init.el
(setq inhibit-startup-message t)
(setq initial-scratch-message nil)
(setq-default indent-tabs-mode t)
(setq default-tab-width 2)
(define-key global-map "\C-h" 'delete-backward-char)
(define-key key-translation-map (kbd "C-h") (kbd "<DEL>"))
(define-key global-map "\C-o" 'set-mark-command)
;; SBCLをデフォルトのCommon Lisp処理系に設定
(setq inferior-lisp-program "sbcl")
;; ~/.emacs.d/slimeをload-pathに追加
(add-to-list 'load-path (expand-file-name "~/.emacs.d/slime"))
;; SLIMEのロード
(require 'slime)
(slime-setup '(slime-repl slime-fancy slime-banner))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment