diff options
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-ui.el | 20 | ||||
-rw-r--r-- | emacs/init.el | 2 |
2 files changed, 2 insertions, 20 deletions
diff --git a/emacs/custom/my-ui.el b/emacs/custom/my-ui.el index 639eb46..228baea 100644 --- a/emacs/custom/my-ui.el +++ b/emacs/custom/my-ui.el @@ -13,26 +13,6 @@ ;;; no fringe on the right side (set-fringe-mode '(8 . 0)) -(require 'standard-themes) -(setq standard-themes-bold-constructs t - standard-themes-italic-constructs t - standard-themes-mixed-fonts t - standard-themes-variable-pitch-ui nil - standard-themes-mode-line-accented t - - ;; Accepts a symbol value: - standard-themes-fringes 'intense - - ;; The following accept lists of properties - standard-themes-links '(neutral-underline bold) - standard-themes-region '(no-extend neutral intense) - standard-themes-prompts '(bold italic)) - -;; Disable all other themes to avoid awkward blending: -(mapc #'disable-theme custom-enabled-themes) - -(load-theme 'standard-dark :no-confirm) - (when (memq window-system '(mac ns)) (add-to-list 'default-frame-alist '(font . "Source Code Pro-15")) (add-to-list 'default-frame-alist '(fullscreen . maximized)) diff --git a/emacs/init.el b/emacs/init.el index 8a1497d..3a24cdc 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -10,6 +10,8 @@ (write-region "" nil custom-file)) (load custom-file) +(invert-face 'default) + (setq gc-cons-threshold 64000000) ;; configure straight to manage packages |