From d11217d410c2bcd2fc83f2e4865dc83c8fd37502 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 23 Jul 2019 08:19:35 -0400 Subject: [PATCH] Fix beacon mode and change theme to kaolin-valley-dark #emacs --- emacs/.config/doom/config.el | 14 +++++++------- emacs/.config/doom/init.el | 15 +++++++++++++++ 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/emacs/.config/doom/config.el b/emacs/.config/doom/config.el index 1070009..927bff4 100644 --- a/emacs/.config/doom/config.el +++ b/emacs/.config/doom/config.el @@ -10,11 +10,11 @@ (setq user-full-name "Colin Powell" user-mail-address "colin@onec.me") -(setq doom-theme 'kaolin-temple) +(setq doom-theme 'kaolin-valley-dark) ;; Fonts -(setq doom-font (font-spec :family "Iosevka" :size 14)) -(setq doom-big-font (font-spec :family "Iosevka" :size 20)) +(setq doom-font (font-spec :family "Iosevka" :size 15)) +(setq doom-big-font (font-spec :family "Iosevka" :size 21)) ;; Host-specific config @@ -101,12 +101,12 @@ web-search-providers) (setq web-search-default-provider "Searx")) -(after! beacon - (beacon-mode 1)) +(setq beacon-mode 1) -(require 'org-alert) +(def-package! org-alert + :commands (org-alert-enable)) -(after! org-alert +(after! org-alert-mode (setq alert-default-style 'libnotify)) ;; diff --git a/emacs/.config/doom/init.el b/emacs/.config/doom/init.el index 32c3423..dc53f6c 100644 --- a/emacs/.config/doom/init.el +++ b/emacs/.config/doom/init.el @@ -152,3 +152,18 @@ (default +bindings +smartparens)) (setq evil-want-C-i-jump nil) +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; 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. + '(custom-safe-themes + (quote + ("886fe9a7e4f5194f1c9b1438955a9776ff849f9e2f2bbb4fa7ed8879cdca0631" "43c808b039893c885bdeec885b4f7572141bd9392da7f0bd8d8346e02b2ec8da" "7d4340a89c1f576d1b5dec57635ab93cdc006524bda486b66d01a6f70cffb08e" "030346c2470ddfdaca479610c56a9c2aa3e93d5de3a9696f335fd46417d8d3e4" "0f1733ad53138ddd381267b4033bcb07f5e75cd7f22089c7e650f1bb28fc67f4" "11e0bc5e71825b88527e973b80a84483a2cfa1568592230a32aedac2a32426c1" "ef07cb337554ffebfccff8052827c4a9d55dc2d0bc7f08804470451385d41c5c" "ff829b1ac22bbb7cee5274391bc5c9b3ddb478e0ca0b94d97e23e8ae1a3f0c3e" "fa477d10f10aa808a2d8165a4f7e6cee1ab7f902b6853fbee911a9e27cf346bc" default))) + '(doom-big-font-mode nil)) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; 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. + )