dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 94063ef05176c73cdba7fac3ed16cab581a61511
parent 6a6f0482023747a94dae8f3aa9056bdd24a22da8
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date:   Wed, 30 Apr 2014 11:19:30 +0200

added html2text, changed font config

Diffstat:
M.emacs.d/init.el | 15+++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/.emacs.d/init.el b/.emacs.d/init.el @@ -105,11 +105,6 @@ ;; on mac, there's always a menu bar drown, don't have it empty (menu-bar-mode -1)) -;; choose your own fonts, in a system dependant way -(if (string-match "apple-darwin" system-configuration) - (set-face-font 'default "Monaco-11") ; os x - (set-face-font 'default "termsynu")) ; other - ;(set-face-font 'default "Monospace-10")) (global-hl-line-mode) ; highlight current line (global-linum-mode 1) ; add line numbers on the left @@ -238,6 +233,9 @@ ;; use imagemagick, if available (when (fboundp 'imagemagick-register-types) (imagemagick-register-types)) +(setq mu4e-view-prefer-html t) +(setq mu4e-html2text-command "html2text -utf8 -width 72") ; debian pkg html2text + ;; update interval (setq @@ -255,4 +253,9 @@ ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. - ) + '(default ((t (:inherit nil :stipple nil :background "#002b36" :foreground "#839496" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 128 :width normal :foundry "unknown" :family "termsyn"))))) +;; choose your own fonts, in a system dependant way +(if (string-match "apple-darwin" system-configuration) + (set-face-font 'default "Monaco-11")) ; os x + ;(set-face-font 'default "termsynu")) ; other + ;(set-face-font 'default "Monospace-10"))