(eval-when-compile (require 'use-package)) ;; Set default font. (set-face-attribute 'default nil :height 130 :weight 'normal :width 'normal) (use-package tool-bar :config (tool-bar-mode -1)) (use-package scroll-bar :config (scroll-bar-mode -1)) (use-package frame :bind ("" . toggle-frame-fullscreen) :config (blink-cursor-mode -1) (when (eq system-type 'darwin) (setq ns-use-native-fullscreen nil))) (provide 'fcuny-appearance)