From e82519e0cb00d0c729e08131afd441608fa33011 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 20 May 2018 10:57:09 +0100 Subject: Adding changes --- emacs/loader.org | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/emacs/loader.org b/emacs/loader.org index ad52fb5..5a7278b 100644 --- a/emacs/loader.org +++ b/emacs/loader.org @@ -141,15 +141,17 @@ preferred style. This is just personal preference though. #+END_SRC *** Font -Set the font to monaco. It has to use the xft syntax, otherwise it doesn't -render properly. The font is also set twice, so that it is properly set when -using emacs normally or using the emacsclient. +Set the font to Hack, which is an opensource monospace font designed for +programming and looking at source code. #+BEGIN_SRC emacs-lisp - (set-default-font "Monaco-11") - (setq default-frame-alist '((font . "Monaco-11"))) + (set-default-font "Hack-11") + (setq default-frame-alist '((font . "Hack-11"))) #+END_SRC +#+RESULTS: +: ((font . Hack-11)) + ** Social *** Mail ~mu4e~ is automatically in the load path when installed through a package @@ -311,6 +313,12 @@ Setting up ~smtp~ to send messages using gmail. (define-key global-map (kbd "C-x r c") 'helm-addressbook-bookmarks) #+END_SRC +**** Winner Mode + +#+BEGIN_SRC emacs-lisp + (setq winner-mode t) +#+END_SRC + *** Visual **** All the icons #+BEGIN_SRC emacs-lisp @@ -387,6 +395,7 @@ Setting up ~smtp~ to send messages using gmail. #+END_SRC *** Misc +**** Reducing ringing Reduce the ringing in emacs. #+BEGIN_SRC emacs-lisp @@ -396,7 +405,6 @@ Reduce the ringing in emacs. (setq ring-bell-function 'my-bell-function) (setq visible-bell nil) #+END_SRC - ** Writing *** Spellcheck in emacs #+BEGIN_SRC emacs-lisp @@ -503,6 +511,12 @@ Exporting to html needs htmlize. (use-package htmlize) #+END_SRC +*** Writeroom + +#+BEGIN_SRC emacs-lisp + (use-package writeroom-mode) +#+END_SRC + ** Programming My emacs configuration is mostly focused on programming, therefore there is a lot of different language support. @@ -725,11 +739,11 @@ Enabling global flycheck support. (before theme-dont-propagate activate) (mapcar #'disable-theme custom-enabled-themes)) - (use-package color-theme-sanityinc-tomorrow) + ;; (use-package color-theme-sanityinc-tomorrow) - (use-package leuven-theme) + ;; (use-package leuven-theme) - (use-package zenburn-theme) + ;; (use-package zenburn-theme) ;; (use-package gruvbox-theme) @@ -797,9 +811,6 @@ Enabling global flycheck support. (toggle-scroll-bar -1)) #+END_SRC -#+RESULTS: -: y/set-theme - Setting up my keybindings #+BEGIN_SRC emacs-lisp (define-prefix-command 'y-map) -- cgit