emacs.d/bundle/darwin-customs.el

12 lines
549 B
EmacsLisp
Raw Normal View History

2019-05-03 11:49:35 +02:00
(when (eq system-type 'darwin)
2019-05-04 23:26:06 +02:00
(when (display-graphic-p)
2019-05-09 17:06:23 +02:00
;;(set-default-font "RobotoMono Nerd Font 13")
(set-frame-font "RobotoMono Nerd Font 13")
(add-to-list 'default-frame-alist '(font . "RobotoMono Nerd Font-13"))
2019-05-04 23:26:06 +02:00
(add-to-list 'default-frame-alist '(ns-transparent-titlebar . t))
(add-to-list 'default-frame-alist '(ns-appearance . dark))
2019-05-07 19:14:57 +02:00
(add-to-list 'default-frame-alist '(height . 60))
(add-to-list 'default-frame-alist '(width . 80)))
2019-05-04 23:26:06 +02:00
(unless (display-graphic-p)))
2019-05-02 19:40:34 +02:00
(provide 'darwin-customs)