diff options
-rw-r--r-- | init.el | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/init.el b/init.el index 867f5a0..cf69c1b 100644 --- a/init.el +++ b/init.el | |||
@@ -280,6 +280,8 @@ | |||
280 | (setq mode-line-format '(:eval simple-modeline--mode-line))))) | 280 | (setq mode-line-format '(:eval simple-modeline--mode-line))))) |
281 | 281 | ||
282 | (setup eww | 282 | (setup eww |
283 | (:option eww-search-prefix "https://duckduckgo.com/html?q=" | ||
284 | url-privacy-level '(email agent cookies lastloc)) | ||
283 | (:hook acdw/reading-mode)) | 285 | (:hook acdw/reading-mode)) |
284 | 286 | ||
285 | (setup files | 287 | (setup files |
@@ -582,7 +584,8 @@ | |||
582 | shr-max-width fill-column | 584 | shr-max-width fill-column |
583 | shr-max-image-proportion 0.6 | 585 | shr-max-image-proportion 0.6 |
584 | shr-image-animate t | 586 | shr-image-animate t |
585 | shr-discard-aria-hidden t)) | 587 | shr-discard-aria-hidden t |
588 | shr-folding-mode t)) | ||
586 | 589 | ||
587 | (setup text | 590 | (setup text |
588 | (:hook turn-on-auto-fill | 591 | (:hook turn-on-auto-fill |
@@ -640,7 +643,7 @@ | |||
640 | (setup emacs | 643 | (setup emacs |
641 | (:option disabled-command-function nil | 644 | (:option disabled-command-function nil |
642 | load-prefer-newer t | 645 | load-prefer-newer t |
643 | comp-async-report-warnings-errors nil | 646 | native-comp-async-report-warnings-errors nil |
644 | echo-keystrokes 0.01 | 647 | echo-keystrokes 0.01 |
645 | attempt-stack-overflow-recovery nil | 648 | attempt-stack-overflow-recovery nil |
646 | attempt-orderly-shutdown-on-fatal-signal nil | 649 | attempt-orderly-shutdown-on-fatal-signal nil |
@@ -683,6 +686,9 @@ | |||
683 | (autoload 'dired-async-mode "dired-async.el" nil t) | 686 | (autoload 'dired-async-mode "dired-async.el" nil t) |
684 | (dired-async-mode +1)) | 687 | (dired-async-mode +1)) |
685 | 688 | ||
689 | (setup (:straight ace-link) | ||
690 | (ace-link-setup-default)) | ||
691 | |||
686 | (setup (:straight avy) | 692 | (setup (:straight avy) |
687 | (:global "C-:" avy-goto-char | 693 | (:global "C-:" avy-goto-char |
688 | "C-'" avy-goto-char-timer | 694 | "C-'" avy-goto-char-timer |
@@ -926,10 +932,13 @@ if ripgrep is installed, otherwise `consult-grep'." | |||
926 | 932 | ||
927 | (setup (:straight (org :host nil | 933 | (setup (:straight (org :host nil |
928 | :repo "https://code.orgmode.org/bzg/org-mode.git")) | 934 | :repo "https://code.orgmode.org/bzg/org-mode.git")) |
935 | (:straight (org-contrib :host nil | ||
936 | :repo "https://git.sr.ht/~bzg/org-contrib")) | ||
929 | (require 'acdw-org) ; so I don't clutter up init.el | 937 | (require 'acdw-org) ; so I don't clutter up init.el |
930 | (:option org-adapt-indentation nil | 938 | (:option org-adapt-indentation nil |
931 | org-catch-invisible-edits 'smart | 939 | org-catch-invisible-edits 'smart |
932 | org-confirm-babel-evaluate nil | 940 | org-confirm-babel-evaluate nil |
941 | org-ellipsis " ⌵" | ||
933 | org-export-coding-system 'utf-8-unix | 942 | org-export-coding-system 'utf-8-unix |
934 | org-export-headline-levels 8 | 943 | org-export-headline-levels 8 |
935 | org-export-with-section-numbers nil | 944 | org-export-with-section-numbers nil |