summaryrefslogtreecommitdiff
path: root/emacs.d/custom/fcuny-ui.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/custom/fcuny-ui.el')
-rw-r--r--emacs.d/custom/fcuny-ui.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-ui.el b/emacs.d/custom/fcuny-ui.el
index e3b775b..b579863 100644
--- a/emacs.d/custom/fcuny-ui.el
+++ b/emacs.d/custom/fcuny-ui.el
@@ -11,9 +11,14 @@
:config
(tool-bar-mode -1))
+(use-package menu-bar
+ :config
+ (menu-bar-mode -1))
+
(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")
@@ -21,7 +26,9 @@
(add-to-list 'default-frame-alist '(ns-appearance . nil))
(add-to-list 'default-frame-alist '(ns-transparent-titlebar . nil))
(setq ns-use-native-fullscreen nil)
- (setq mac-allow-anti-aliasing t)))
+ (setq mac-allow-anti-aliasing t))
+ (when (memq window-system '(x))
+ (set-frame-font "Source Code Pro-10")))
(use-package hl-line
:hook ((prog-mode puppet-mode dired-mode org-mode markdown-mode conf-mode yaml-mode) . hl-line-mode)