summary refs log tree commit diff
path: root/emacs.d/config/fcuny-appearance.el
blob: 5c65374074bc5562c01a353a1c5dd2018a979053 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(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 ("<s-return>" . toggle-frame-fullscreen)
  :config
  (blink-cursor-mode -1)
  (when (eq system-type 'darwin)
    (setq ns-use-native-fullscreen nil)))

(provide 'fcuny-appearance)