2013-07-08 01:15:05 +02:00
|
|
|
;; Initializes modes I use.
|
|
|
|
|
|
|
|
(add-hook 'prog-mode-hook 'esk-add-watchwords)
|
|
|
|
(add-hook 'prog-mode-hook 'idle-highlight-mode)
|
|
|
|
|
|
|
|
;; Configure markdown-mode
|
|
|
|
(autoload 'markdown-mode "markdown-mode"
|
|
|
|
"Major mode for editing Markdown files" t)
|
|
|
|
(add-to-list 'auto-mode-alist '("\\.txt\\'" . markdown-mode))
|
|
|
|
(add-to-list 'auto-mode-alist '("\\.markdown\\'" . markdown-mode))
|
|
|
|
(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
|
|
|
|
|
2013-08-19 00:53:05 +02:00
|
|
|
;; Use auto-complete as completion at point
|
|
|
|
(defun set-auto-complete-as-completion-at-point-function ()
|
|
|
|
(setq completion-at-point-functions '(auto-complete)))
|
2013-10-17 14:17:38 +02:00
|
|
|
|
|
|
|
(add-hook 'auto-complete-mode-hook
|
|
|
|
'set-auto-complete-as-completion-at-point-function)
|
2013-08-19 00:53:05 +02:00
|
|
|
|
2014-12-29 21:51:25 +01:00
|
|
|
;; Configure Erlang mode
|
2013-08-28 00:56:20 +02:00
|
|
|
|
2015-01-16 14:42:48 +01:00
|
|
|
(defun erlang-mode-init-setup ()
|
|
|
|
(interactive)
|
|
|
|
;; Don't indent after '>' while I'm writing
|
|
|
|
(local-set-key ">" 'self-insert-command)
|
2015-05-03 18:22:58 +02:00
|
|
|
;;(local-set-key "RET" 'newline)
|
|
|
|
(rainbow-delimiters-mode 1)
|
2015-01-16 14:42:48 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
(add-hook 'erlang-mode-hook 'erlang-mode-init-setup)
|
2013-07-08 01:15:05 +02:00
|
|
|
|
2013-07-08 01:31:03 +02:00
|
|
|
;; Enable rainbow-delimiters for all things programming
|
|
|
|
(add-hook 'prog-mode-hook 'rainbow-delimiters-mode)
|
|
|
|
|
2013-07-29 00:53:08 +02:00
|
|
|
;; Enable Paredit in Emacs Lisp mode
|
|
|
|
(add-hook 'emacs-lisp-mode-hook 'paredit-mode)
|
2013-07-14 18:08:44 +02:00
|
|
|
|
|
|
|
;; Always highlight matching brackets
|
|
|
|
(show-paren-mode 1)
|
|
|
|
|
2017-11-06 19:31:02 +01:00
|
|
|
;; Always auto-close parantheses and other pairs
|
|
|
|
(electric-pair-mode)
|
|
|
|
|
2013-08-05 16:18:56 +02:00
|
|
|
;; Represent undo-history as an actual tree (visualize with C-x u)
|
|
|
|
(setq undo-tree-mode-lighter "")
|
|
|
|
(require 'undo-tree)
|
|
|
|
(global-undo-tree-mode)
|
2013-07-29 00:53:08 +02:00
|
|
|
|
|
|
|
;; Keep track of recent files
|
|
|
|
(recentf-mode)
|
|
|
|
|
2013-08-05 16:18:56 +02:00
|
|
|
;; Easily navigate sillycased words
|
|
|
|
(global-subword-mode 1)
|
|
|
|
|
|
|
|
;; Transparently open compressed files
|
|
|
|
(auto-compression-mode t)
|
2013-08-07 00:49:20 +02:00
|
|
|
|
2017-11-15 18:29:01 +01:00
|
|
|
;; Show available key chord completions
|
|
|
|
(which-key-mode t)
|
|
|
|
|
2014-10-21 19:37:19 +02:00
|
|
|
(provide 'modes)
|