legacy-dotfiles/emacs.d/20-folding.el
Tom Willemsen d2ce5467c3 Bytecompile
Byte-compile and recompile all modules in .emacs.d and .emacs.d/elisp
2011-04-14 20:49:49 +02:00

10 lines
391 B
EmacsLisp

(if (load "folding")
(progn (add-hook 'folding-mode-hook
(lambda ()
(local-set-key [C-tab] 'folding-toggle-show-hide)))
(add-hook 'c-mode-hook
(lambda ()
(folding-mode)))
(add-hook 'emacs-lisp-mode-hook
(lambda ()
(folding-mode)))))