summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-03-27 19:26:59 -0700
committerFranck Cuny <franck@fcuny.net>2023-03-27 19:26:59 -0700
commit36ec42723ace2ad49a0949fbceb37b919bc37ca2 (patch)
tree51b5fbe1610f148ee3437dfe381759199b9c3909
parentref(org): simplify the sequence for todo-keywords (diff)
downloademacs.d-36ec42723ace2ad49a0949fbceb37b919bc37ca2.tar.gz
ui: default color scheme in black
Change-Id: I1dc4fb98f11d46acab82fda6c32cea01eb823e92
-rw-r--r--emacs/custom/my-ui.el20
-rw-r--r--emacs/init.el2
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