;; https://elpa.gnu.org/packages/aggressive-indent.html ;; Automatic Activation of Aggressive Indent (global-aggressive-indent-mode 1) ;; https://www.emacswiki.org/emacs/ParEdit ;; Automatic Activation of ParEdit (autoload 'enable-paredit-mode "paredit" "Turn on pseudo-structural editing of Lisp code." t) (add-hook 'emacs-lisp-mode-hook #'enable-paredit-mode) (add-hook 'eval-expression-minibuffer-setup-hook #'enable-paredit-mode) (add-hook 'ielm-mode-hook #'enable-paredit-mode) (add-hook 'lisp-mode-hook #'enable-paredit-mode) (add-hook 'lisp-interaction-mode-hook #'enable-paredit-mode) (add-hook 'scheme-mode-hook #'enable-paredit-mode)