aboutsummaryrefslogtreecommitdiff
path: root/bard-emacs-modules/bard-lang.el
blob: 2400ea5c8935da758c3528b9324ebc40575fdf33 (plain)
1
2
3
4
5
6
7
8
9
(defun bard/common-modes-hook ()
  "Commonly used modes, bundled in one hook"
  (display-line-numbers-mode 1)
  (electric-pair-mode 1)
  (hl-todo-mode 1))

(add-hook 'emacs-lisp-mode-hook 'bard/common-modes-hook)
(add-hook 'haskell-mode-hook 'bard/common-modes-hook)
(add-hook 'clojure-mode-hook 'bard/common-modes-hook)