summaryrefslogtreecommitdiff
path: root/emacs.el
blob: a5d919929f37f78730bca2b8f34bf363fcf7e900 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
;; https://github.com/fimblo/dot.emacs
;; Theme Activation

(load-theme 'modus-vivendi)

;; https://elpa.gnu.org/packages/aggressive-indent.html
;; Automatic Activation of Aggressive Indent

(global-aggressive-indent-mode 1)

;; http://company-mode.github.io/
;; Automatic Activation of Company Mode

(add-hook 'after-init-hook 'global-company-mode)

;; 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)