diff options
author | Marius Peter <marius.peter@tutanota.com> | 2022-11-14 19:43:05 +0100 |
---|---|---|
committer | Marius Peter <marius.peter@tutanota.com> | 2022-11-14 19:43:05 +0100 |
commit | 3cfa92d0747942655da504154ed11cb6d48eb26e (patch) | |
tree | 1f047520b0070ebc36497c41dc8f469aa98257a1 | |
parent | e5a95211bf1cbfdb15985962c0de1620c0a39e3f (diff) |
Less transparency + revert to sd theme.
-rw-r--r-- | smart-documents.org | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/smart-documents.org b/smart-documents.org index 624db32..3afffdd 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -375,8 +375,8 @@ Transparency. : (set-frame-parameter (selected-frame) 'alpha <both>) #+BEGIN_SRC emacs-lisp :tangle yes - (set-frame-parameter (selected-frame) 'alpha '(90 . 70)) - (add-to-list 'default-frame-alist '(alpha . (90 . 70))) + (set-frame-parameter (selected-frame) 'alpha '(95 . 95)) + (add-to-list 'default-frame-alist '(alpha . (95 . 95))) #+END_SRC ** Secrets @@ -1020,6 +1020,7 @@ web-related markup languages. #+BEGIN_SRC emacs-lisp :tangle yes (use-package web-mode) (use-package nginx-mode) + ;; (use-package js-mode) #+END_SRC ** File formats @@ -1212,7 +1213,7 @@ We display LaTeX entities as UTF8 symbols \rArr this is a slick idea to further make Emacs look like the exported PDF. Using symbols in tables is discouraged? -#+BEGIN_SRC emacs-lisp :tangle yes +#+BEGIN_SRC emacs-lisp :tangle no (setq org-pretty-entities t) #+END_SRC @@ -2035,7 +2036,7 @@ unusable. Thus, we /describe/ two themes that were developed (load-theme 'molokai) #+END_SRC -#+BEGIN_SRC emacs-lisp :tangle yes +#+BEGIN_SRC emacs-lisp :tangle no (load-theme 'wombat) #+END_SRC @@ -2043,7 +2044,7 @@ unusable. Thus, we /describe/ two themes that were developed (load-theme 'sd-light) #+END_SRC -#+BEGIN_SRC emacs-lisp :tangle no +#+BEGIN_SRC emacs-lisp :tangle yes (load-theme 'sd-dark) #+END_SRC |