Skip to content

Commit

Permalink
Require cl at the beginning of emacs config
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrone committed Dec 25, 2015
1 parent d409af5 commit 029ffc0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions emacs.org
Expand Up @@ -81,6 +81,12 @@ during loading that breaks something, it's nice to have a debug information.
(setq debug-on-quit t)
#+END_SRC

Also, let's make =cl= things available right from the start

#+BEGIN_SRC emacs-lisp
(require 'cl)
#+END_SRC

#+BEGIN_SRC emacs-lisp
;; Dvorak nicety, regardless of loading settings
(define-key key-translation-map "\C-t" "\C-x")
Expand Down Expand Up @@ -1914,6 +1920,9 @@ nice.
(interactive)
(use-package leuven-theme
:init (load-theme 'leuven t))
(use-package color-theme-sanityinc-tomorrow
:disabled t
:init (load-theme 'sanityinc-tomorrow-day t))
(use-package solarized-theme
:disabled t
:init (load-theme 'solarized-light t))
Expand Down

0 comments on commit 029ffc0

Please sign in to comment.