Emacs: Remove default frame size, add transparency

This commit is contained in:
2021-09-23 11:48:16 -07:00
parent bd3ec03c84
commit fa2b3fb3c1

View File

@@ -34,8 +34,12 @@
;; `load-theme' function. This is the default:
(setq doom-theme 'doom-one)
;; Initial frame size
(add-to-list 'default-frame-alist '(width . 125))
(add-to-list 'default-frame-alist '(height . 70))
;; (add-to-list 'default-frame-alist '(width . 125))
;; (add-to-list 'default-frame-alist '(height . 70))
;; Transparency
(set-frame-parameter (selected-frame) 'alpha '(97 96))
(add-to-list 'default-frame-alist '(alpha 97 96))
;; If you use `org' and don't want your org files in the default location below,
;; change `org-directory'. It must be set before org loads!