Created
November 16, 2015 19:59
-
-
Save jraines/1ca467fe56e0def4b3e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq adjust-parens-packages | |
'( | |
;; package names go here | |
adjust-parens | |
)) | |
;; List of packages to exclude. | |
(setq adjust-parens-excluded-packages '()) | |
;; For each package, define a function adjust-parens/init-<package-name> | |
;; | |
(defun adjust-parens/init-my-package () | |
(require 'adjust-parens) | |
(add-hook 'emacs-lisp-mode-hook #'adjust-parens-mode) | |
(add-hook 'clojure-mode-hook #'adjust-parens-mode) | |
(local-set-key (kbd "TAB") 'lisp-indent-adjust-parens) | |
(local-set-key (kbd "<backtab>") 'lisp-dedent-adjust-parens) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment