emacs.d/bundle/darwin-customs.el

10 lines
420 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-07 19:14:57 +02:00
(set-default-font "Hack Nerd Font Mono 12")
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)