aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-05-20 10:57:09 +0100
committerYann Herklotz <ymherklotz@gmail.com>2018-05-20 10:57:09 +0100
commite82519e0cb00d0c729e08131afd441608fa33011 (patch)
tree18c6cfbd481e5ca1c2f2f9846237fb79d0297e6e
parenta86d56dad4d4ed1d8013ddaf53c7000b9f052fdf (diff)
downloaddotfiles-e82519e0cb00d0c729e08131afd441608fa33011.tar.gz
dotfiles-e82519e0cb00d0c729e08131afd441608fa33011.zip
Adding changes
-rw-r--r--emacs/loader.org35
1 files 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)