11 lines
549 B
EmacsLisp
11 lines
549 B
EmacsLisp
(when (eq system-type 'darwin)
|
|
(when (display-graphic-p)
|
|
;;(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"))
|
|
(add-to-list 'default-frame-alist '(ns-transparent-titlebar . t))
|
|
(add-to-list 'default-frame-alist '(ns-appearance . dark))
|
|
(add-to-list 'default-frame-alist '(height . 60))
|
|
(add-to-list 'default-frame-alist '(width . 80)))
|
|
(unless (display-graphic-p)))
|
|
(provide 'darwin-customs)
|