From 5bd24fb81ef5e14cee083971e4ec1b8ab585d490 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 20 May 2016 17:24:37 -0400 Subject: [PATCH] big-mode: update + try Inconsolata font instead of Hack --- modules/extra-demo.el | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/modules/extra-demo.el b/modules/extra-demo.el index 9a56791e2..1ad59da24 100644 --- a/modules/extra-demo.el +++ b/modules/extra-demo.el @@ -9,9 +9,9 @@ ;; + TODO peer programming collab ;; Big-mode settings -(defconst big-mode-font (font-spec :family "Hack" :size 16)) +(defconst big-mode-font (font-spec :family "Inconsolata" :size 18)) (defconst big-mode-line-spacing 0) -(defconst big-mode-modeline-height 30) +(defconst big-mode-modeline-height 35) ;; (use-package impatient-mode @@ -23,9 +23,13 @@ :init-value nil :lighter " BIG" :global t - (setq-default powerline-height (if big-mode big-mode-modeline-height big-mode--powerline-height)) (narf/load-font (if big-mode big-mode-font narf-default-font)) - (setq-default line-spacing (if big-mode big-mode-line-spacing big-mode--line-spacing))) + (setq-default powerline-height + (if big-mode + big-mode-modeline-height + big-mode--powerline-height)) + (setq-default line-spacing + (if big-mode big-mode-line-spacing big-mode--line-spacing))) (provide 'extra-demo) ;;; extra-demo.el ends here