LoginSignup
4
4

More than 5 years have passed since last update.

lisp-mode + outline-mode で快適生活

Posted at

リンクは以下。

C-Tab で、カッコをたたんで開いて。
そういえば、自分 paredit 入れてないなあ。入れようか。
自分は途中まで書いてC-c ]だからなー

(add-to-list 'load-path (site "outline-magic"))
(eval-after-load 'outline
  '(progn
    (require 'outline-magic)
    (define-key outline-minor-mode-map (kbd "<C-tab>") 'outline-cycle)))

(defun lisp-mode-common-hook ()
  (require 'slime-annot)
  (require 'hyperspec)
  (require 'cl-indent-patches)
  (outline-minor-mode t)
  (eldoc-mode t)
  (setf truncate-lines t)
  (setq tab-width 8))
4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4