Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | +elfeed, some settings |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
be70928cafb1bd54b8b166d514e127e8 |
User & Date: | Cthulhux 2020-04-09 17:17:05 |
Context
2020-04-15
| ||
08:34 | +Circe for IRC check-in: e5b52d255e user: Cthulhux tags: trunk | |
2020-04-09
| ||
17:17 | +elfeed, some settings check-in: be70928caf user: Cthulhux tags: trunk | |
2020-04-04
| ||
21:29 | orgmode config check-in: d2fd7764a7 user: Cthulhux tags: trunk | |
Changes
Changes to emacs/init.el.
︙ | ︙ | |||
17 18 19 20 21 22 23 24 25 26 27 28 29 30 | (setq inhibit-splash-screen t) (setq inhibit-startup-screen t) (setq initial-scratch-message nil) (setq initial-major-mode 'text-mode) (setq make-backup-files nil) (setq gc-cons-threshold 100000000) ;; Nicer font: (set-face-attribute 'default nil :family "Hack") (when (eq system-type 'darwin) | > > > | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | (setq inhibit-splash-screen t) (setq inhibit-startup-screen t) (setq initial-scratch-message nil) (setq initial-major-mode 'text-mode) (setq make-backup-files nil) ;; Automatically reload files edited elsewhere: (setq global-auto-revert-mode t) (setq gc-cons-threshold 100000000) ;; Nicer font: (set-face-attribute 'default nil :family "Hack") (when (eq system-type 'darwin) |
︙ | ︙ | |||
77 78 79 80 81 82 83 84 85 86 87 88 89 90 | ;; Use the C Perl mode (may be better than the default one). (defalias 'perl-mode 'cperl-mode) ;; Gnus preparation: Make it faster and nicer looking. ;; (Let's keep the account configuration in .gnus.el though.) (use-package gnus :config (setq gnus-read-active-file t) (gnus-add-configuration '(article (vertical 1.0 (summary .35 point) (article 1.0))))) (use-package gnus-async :after gnus :config (setq gnus-asynchronous t) | > | 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | ;; Use the C Perl mode (may be better than the default one). (defalias 'perl-mode 'cperl-mode) ;; Gnus preparation: Make it faster and nicer looking. ;; (Let's keep the account configuration in .gnus.el though.) (use-package gnus :config (setq gnus-always-read-dribble-file t) (setq gnus-read-active-file t) (gnus-add-configuration '(article (vertical 1.0 (summary .35 point) (article 1.0))))) (use-package gnus-async :after gnus :config (setq gnus-asynchronous t) |
︙ | ︙ | |||
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | ;; Support org-mode import from a website. (use-package org-web-tools :ensure t) ;; Support my blog as well (use-package org2blog :ensure t :init (load-file "~/.emacs.d/org2blog-config.el")) ;; A less shitty modeline: (use-package doom-modeline :ensure t :init (doom-modeline-mode 1)) ;; A less shitty package manager: (use-package paradox | > > > > > > > > > > > > > > > > > > > > > > | 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | ;; Support org-mode import from a website. (use-package org-web-tools :ensure t) ;; Support my blog as well (use-package org2blog :ensure t :config (setq org2blog/wp-show-post-in-browser t) :init ;; Keep the log-in data out of the public eye: (load-file "~/.emacs.d/org2blog-config.el")) ;; RSS feed reader with some extras: (use-package elfeed :ensure t) (use-package elfeed-goodies :ensure t :after elfeed :init (elfeed-goodies/setup)) ;; Hook elfeed into Newsblur: (use-package elfeed-protocol :ensure t :after elfeed :init ;; Keep the log-in data out of the public eye: (elfeed-protocol-enable) (load-file "~/.emacs.d/elfeed-config.el")) ;; A less shitty modeline: (use-package doom-modeline :ensure t :init (doom-modeline-mode 1)) ;; A less shitty package manager: (use-package paradox |
︙ | ︙ | |||
326 327 328 329 330 331 332 333 334 335 336 337 338 339 | (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(ivy-count-format "(%d/%d) " t) '(ivy-use-virtual-buffers t t) '(ivy-virtual-abbreviate (quote full) t) '(package-selected-packages (quote (org-web-tools all-the-icons-gnus wanderlust all-the-icons-ivy-rich all-the-icons nofrils-acme-theme auto-package-update use-package)))) (custom-set-faces | > | 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 | (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(canlock-password "5e5c6fd080d6c0bce2d09b8ec6e3693c1a63c654") '(ivy-count-format "(%d/%d) " t) '(ivy-use-virtual-buffers t t) '(ivy-virtual-abbreviate (quote full) t) '(package-selected-packages (quote (org-web-tools all-the-icons-gnus wanderlust all-the-icons-ivy-rich all-the-icons nofrils-acme-theme auto-package-update use-package)))) (custom-set-faces |
︙ | ︙ |