From dd067002ae0e1bccd974f4ba4b39ed8cdc4bc016 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 30 Nov 2015 05:33:25 -0500 Subject: [PATCH] Less gc tuning + use Hack font --- core/core.el | 4 +--- init.el | 10 +++++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/core/core.el b/core/core.el index 76825a154..865f7b7c7 100644 --- a/core/core.el +++ b/core/core.el @@ -152,9 +152,7 @@ (require 'server) (unless (server-running-p) - (server-start)) - - (add-hook! after-init (setq gc-cons-threshold 850000))) + (server-start))) (provide 'core) ;;; core.el ends here diff --git a/init.el b/init.el index 2e7f5838f..3d1c6e902 100644 --- a/init.el +++ b/init.el @@ -40,14 +40,14 @@ ;; ;;; License: GPLv3 -(setq gc-cons-threshold 169715200) - (defconst narf-theme 'narf-dark) -(defconst narf-default-font (font-spec :family "DejaVu Sans Mono" :size 12)) -(defconst narf-big-font (font-spec :family "Inconsolata" :size 20)) +(defconst narf-default-font (font-spec :family "Hack" :size 12)) +(defconst narf-writing-font (font-spec :family "Hack" :size 14)) +(defconst narf-big-font (font-spec :family "Inconsolata" :size 20)) ;; prematurely optimize for faster startup -(let (file-name-handler-alist) +(let (file-name-handler-alist + (gc-cons-threshold 169715200)) (scroll-bar-mode -1) ; no scrollbar (tool-bar-mode -1) ; no toolbar