summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--custom.el2
-rw-r--r--smart-documents.org19
2 files changed, 12 insertions, 9 deletions
diff --git a/custom.el b/custom.el
index 919d428..d1bc837 100644
--- a/custom.el
+++ b/custom.el
@@ -17,7 +17,7 @@
'(cua-mode t nil (cua-base))
'(custom-enabled-themes nil)
'(custom-safe-themes
- '("0ab22463613090e46ea3b4a9a63c683e5b7fb5672cbf4888c720984caf1f5de1" "f78bb8993b8eb972db7d116f46b5969b38bb793f0a26f0b85d07546ac5248098" "59104e0700545965a14e2ab985884f81e7a41a6ea92c01c55979e1b92e47ebdc" "acad5bdfb9965352b90f50b2ffc47fbfd1ac708dcfbef8354aadc38240f1e478" "42e821f3d0d3a0ee44210b5d3bfc2f89f1a62d095512ec59737457209373d47b" "b969eb451a141d5d438b9b9814ed85252ad4411d71385cd5217a4a7f51844677" "d00ef309aa3e60f4c5780f2439dfde87eb7a927aa12f47a975d345a83483f708" "a9cfa0b8beb9e5edd204d709e86730224cc1995b2ac67da038bf83cf5b5dc0d4" "82c35cda29ae87484d769e19262fe9aa7d65c6ea7869088d05eaf5cda06cb4ca" default))
+ '("a643864a52d717b433c4bb4192b9d3c852bf07c32d97d1d5f7b328611d05f6cc" "59ca8d4d11e2b627bcaa2bb21abe61a1ee8fcfde7ef96c562675cd07b08075fb" "cf67a11d183c51346987b06c09ed77452aa58d91bf1eedc79a294fa26cc3ec6d" "e2c3c758924389bb7d54e1b7c89c8abce4a704226e66e3a0db4f0208d1cb58fd" "16c5f25cabfc28514fdb353df38955bb660abdb53b071d38c2e031bcd2dd5f10" "0ab22463613090e46ea3b4a9a63c683e5b7fb5672cbf4888c720984caf1f5de1" "f78bb8993b8eb972db7d116f46b5969b38bb793f0a26f0b85d07546ac5248098" "59104e0700545965a14e2ab985884f81e7a41a6ea92c01c55979e1b92e47ebdc" "acad5bdfb9965352b90f50b2ffc47fbfd1ac708dcfbef8354aadc38240f1e478" "42e821f3d0d3a0ee44210b5d3bfc2f89f1a62d095512ec59737457209373d47b" "b969eb451a141d5d438b9b9814ed85252ad4411d71385cd5217a4a7f51844677" "d00ef309aa3e60f4c5780f2439dfde87eb7a927aa12f47a975d345a83483f708" "a9cfa0b8beb9e5edd204d709e86730224cc1995b2ac67da038bf83cf5b5dc0d4" "82c35cda29ae87484d769e19262fe9aa7d65c6ea7869088d05eaf5cda06cb4ca" default))
'(electric-indent-mode t)
'(erc-autojoin-channels-alist
'(("freenode.net" "##linux" "#linux" "#archlinux" "#emacs" "#bitcoin" "#latex" "#org-mode" "#python")))
diff --git a/smart-documents.org b/smart-documents.org
index 541e813..e553dee 100644
--- a/smart-documents.org
+++ b/smart-documents.org
@@ -293,15 +293,15 @@ Backups are very important!
We set the dimensions of the initial frame:
#+BEGIN_SRC emacs-lisp :tangle yes
- (add-to-list 'initial-frame-alist '(width . 100))
- (add-to-list 'initial-frame-alist '(height . 50))
+ (add-to-list 'initial-frame-alist '(width . 70))
+ (add-to-list 'initial-frame-alist '(height . 40))
#+END_SRC
We also set the dimensions of subsequent frames:
#+BEGIN_SRC emacs-lisp :tangle yes
- (add-to-list 'default-frame-alist '(width . 50))
- (add-to-list 'default-frame-alist '(height . 30))
+ (add-to-list 'default-frame-alist '(width . 70))
+ (add-to-list 'default-frame-alist '(height . 40))
#+END_SRC
Transparency.
@@ -309,8 +309,8 @@ Transparency.
#+BEGIN_SRC emacs-lisp :tangle yes
;; (set-frame-parameter (selected-frame) 'alpha '(<active> . <inactive>))
;; (set-frame-parameter (selected-frame) 'alpha <both>)
- (set-frame-parameter (selected-frame) 'alpha '(95 . 50))
- (add-to-list 'default-frame-alist '(alpha . (95 . 50)))
+ (set-frame-parameter (selected-frame) 'alpha '(95 . 80))
+ (add-to-list 'default-frame-alist '(alpha . (95 . 80)))
#+END_SRC
** Secrets
@@ -718,6 +718,7 @@ modifiable field. Many clever programming tricks can be performed with
#+NAME: company
#+BEGIN_SRC emacs-lisp
+ (use-package company)
(add-hook 'after-init-hook 'global-company-mode)
#+END_SRC
@@ -1037,11 +1038,13 @@ recent header:
(org-entry-properties))
#+END_SRC
+(This block was evaluated on Microsoft Windows.)
+
#+RESULTS[cf982044956d8f3ec89e7a9da80976b1b19db423]: org-meta-info
: (("CATEGORY" . "smart-documents")
: ("BLOCKED" . "")
-: ("FILE" . "/home/blendux/.emacs.d/smart-documents.org")
-: ("PRIORITY" . "B")
+: ("FILE" . "c:/Users/blend/AppData/Roaming/.emacs.d/smart-documents.org")
+: ("PRIORITY" . "A")
: ("ITEM" . "Introduction"))
** Basic customization
Copyright 2019--2024 Marius PETER