Personal theme doesn't work on such a low transparency (I chose colours that are less vibrant and poppy, going for a low-key theme) hence set the alpha higher.
15 lines
553 B
EmacsLisp
15 lines
553 B
EmacsLisp
;;; early-init.el --- My custom early-init.el
|
|
;; Author: Aryadev Chavali <aryadev@aryadevchavali.com
|
|
;; This file is NOT part of GNU Emacs.
|
|
;;; Code:
|
|
|
|
(setq gc-cons-threshold most-positive-fixnum
|
|
package-enable-at-startup nil
|
|
frame-inhibit-implied-resize nil
|
|
frame-resize-pixelwise t)
|
|
(push '(menu-bar-lines . 0) default-frame-alist)
|
|
(push '(tool-bar-lines . 0) default-frame-alist)
|
|
(push '(vertical-scroll-bars) default-frame-alist)
|
|
(push '(alpha . 95) default-frame-alist)
|
|
(advice-add #'x-apply-session-resources :override #'ignore)
|