From ceeb734d82fda4bd7430f9c263a33ebd89162d39 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 16 Jul 2017 12:51:17 +0200 Subject: Emacs: Install base16 theme package --- emacs/.emacs.d/init.org | 11 +++++++++++ nix/.config/nixpkgs/emacs.nix | 1 + 2 files changed, 12 insertions(+) diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index bc6cb69..8a383fc 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -195,6 +195,17 @@ White-theme. Sounds like a good idea. '(font-lock-string-face ((t (:slant normal))))))) #+END_SRC +Base16 theming allows me have a consistent style between applications +quite easily. + +#+BEGIN_SRC emacs-lisp +(use-package base16-theme + :if (or window-system + (daemon-p)) + :config (progn + (load-theme 'base16-mexico-light t))) +#+END_SRC + Highlighting quasi-quoted expressions in lisps is quite useful, but I don't need it all the time. I'll keep it around for a while so that I can enable it if needed. diff --git a/nix/.config/nixpkgs/emacs.nix b/nix/.config/nixpkgs/emacs.nix index 6e53368..02b7496 100644 --- a/nix/.config/nixpkgs/emacs.nix +++ b/nix/.config/nixpkgs/emacs.nix @@ -59,6 +59,7 @@ in async auto-compile avy + base16-theme bbdb beginend cider -- cgit 1.4.1