aboutsummaryrefslogtreecommitdiff
path: root/dot.emacs.d
diff options
context:
space:
mode:
authorThomas Schneider <qsx@qsx.re>2018-01-08 11:11:23 +0100
committerThomas Schneider <qsx@qsx.re>2018-01-08 11:11:23 +0100
commit52c457c86f2bb2ea71fe5197e19c1fba6d2bc31d (patch)
tree01673cb0ff4b41eb683c20358976a97da77f535f /dot.emacs.d
parentcfc5abe6c77cdeba385e4c038a807a5ce931a59a (diff)
Emacs: Update init.el
Diffstat (limited to 'dot.emacs.d')
-rw-r--r--dot.emacs.d/init.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el
index fa64dfd..55697da 100644
--- a/dot.emacs.d/init.el
+++ b/dot.emacs.d/init.el
@@ -40,18 +40,19 @@
:config (color-theme-sanityinc-tomorrow-blue))
(use-package yaml-mode
- :ensure t
:mode ("\\.yml\\'" . yaml-mode))
(use-package linum-relative
:ensure t
:config
(linum-mode)
- (linum-relative-global-mode))
+ (linum-relative-global-mode)
+ (setq linum-relative-current-symbol ""))
(add-to-list 'auto-mode-alist '("/mutt" . mail-mode))
(add-to-list 'auto-mode-alist '("/neomutt" . mail-mode))
(add-hook 'mail-mode-hook 'turn-on-auto-fill)
+(add-hook 'mail-mode-hook 'mail-text)
(use-package tex
:ensure auctex
@@ -61,11 +62,9 @@
(setq fill-column 80))
(use-package muttrc-mode
- :ensure t
:mode "/muttrc")
(use-package rust-mode
- :ensure t
:mode "\\.rs\\'")
(setq tramp-default-method "ssh")