summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2020-10-28 17:21:05 -0700
committerFranck Cuny <franck@fcuny.net>2020-10-28 17:21:05 -0700
commita3a3aed432affd0b879e5f4e0b5067cc0262ea41 (patch)
treebab0bf2fd2559f6c0387b93a11305ddebba112ca /emacs.d
parentlinux: create service for backing up (diff)
downloademacs.d-a3a3aed432affd0b879e5f4e0b5067cc0262ea41.tar.gz
emacs: use default theme / smaller font
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/custom/fcuny-ui.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/emacs.d/custom/fcuny-ui.el b/emacs.d/custom/fcuny-ui.el
index b579863..7d9d699 100644
--- a/emacs.d/custom/fcuny-ui.el
+++ b/emacs.d/custom/fcuny-ui.el
@@ -18,7 +18,6 @@
 (use-package frame
   :config
   (blink-cursor-mode -1)
-  (load-theme 'leuven)
   (setq frame-title-format "%b")
   (when (memq window-system '(mac ns))
     (set-frame-font "Source Code Pro-15")
@@ -28,7 +27,7 @@
     (setq ns-use-native-fullscreen nil)
     (setq mac-allow-anti-aliasing t))
   (when (memq window-system '(x))
-    (set-frame-font "Source Code Pro-10")))
+    (set-frame-font "Source Code Pro-11")))
 
 (use-package hl-line
   :hook ((prog-mode puppet-mode dired-mode org-mode markdown-mode conf-mode yaml-mode) . hl-line-mode)