-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
694 lines (601 loc) · 21.3 KB
/
init.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
;; Display load message when starting emacs
(defun efs/display-startup-time ()
(message "Emacs loaded in %s with %d garbage collections."
(format "%.2f seconds"
(float-time
(time-subtract after-init-time before-init-time)))
gcs-done))
(add-hook 'emacs-startup-hook #'efs/display-startup-time)
;; Remove visible bell
(setq visible-bell nil
ring-bell-function #'ignore)
;; Fonts
(set-face-attribute 'default nil :font "Hack" :height 115)
(set-face-attribute 'fixed-pitch nil :font "Hack" :height 115)
(set-face-attribute 'variable-pitch nil :font "Iosevka" :height 120)
(setq display-line-numbers-type 'relative)
;; Enable line numbers only for programming and text modes
(add-hook 'prog-mode-hook #'display-line-numbers-mode)
(add-hook 'text-mode-hook #'display-line-numbers-mode)
;; Make ESC quit prompts
(global-set-key (kbd "<escape>") 'keyboard-escape-quit)
;; Initialize package sources
(require 'package)
(setq package-archives '(("melpa" . "https://melpa.org/packages/")
("non-gnu" . "https://elpa.nongnu.org/nongnu/")
("elpa" . "https://elpa.gnu.org/packages/")))
(package-initialize)
(unless package-archive-contents
(package-refresh-contents))
;; Initialize use-package on non-Linux platforms
(unless (package-installed-p 'use-package)
(package-install 'use-package))
;; Silence byte compile warnings when installing new packages
(add-to-list 'display-buffer-alist
'("\\`\\*\\(Warnings\\|Compile-Log\\)\\*\\'"
(display-buffer-no-window)
(allow-no-window . t)))
(require 'use-package)
(setq use-package-always-ensure t)
;; Disable line numbers for some text modes
(dolist (mode '(eat-mode-hook
shell-mode-hook
dired-mode-hook
woman-mode-hook
Info-mode-hook
Man-mode-hook
eshell-mode-hook))
(add-hook mode (lambda () (display-line-numbers-mode -1))))
;; Disable certain emacs features
(mapc
(lambda (command)
(put command 'disabled t))
'(eshell project-eshell overwrite-mode iconify-frame diary))
;;; Some standard emacs config
(use-package emacs
:ensure nil
:demand t
:config
(setq kill-do-not-save-duplicates t)
(setq echo-keystrokes-help nil) ; Emacs 30
(setq tab-always-indent 'complete) ; tab for completion and not indenting
(setq auto-save-timeout nil)
(setq help-window-select t) ; Cursor focus goes to help window when invoked
(column-number-mode 1)
(global-visual-wrap-prefix-mode 1)
;; Enable `completion-preview-mode' for certain hooks
:hook (python-mode . completion-preview-mode)
:bind
( :map global-map
("C-x C-d" . nil) ; never use it
("C-x C-z" . nil) ; never use it
("C-x C-c" . nil) ; avoid accidentally exiting Emacs
("C-h h" . nil) ; never show that "hello" file
("C-x <left>" . nil) ; unbind the `previous-buffer' command
("C-x C-p" . previous-buffer) ; rebind `previous-buffer' command
("C-u" . evil-scroll-up) ; explicitly bind C-u because it sometimes misbehaves in evil mode
)
:custom
;; disable Ispell completion function
(text-mode-ispell-word-completion nil)
(read-extended-command-predicate #'command-completion-default-include-p)
)
;;; Vim Bindings
(use-package evil
:demand t
:bind (("<escape>" . keyboard-escape-quit))
:init
;; allows for using cgn
(setq evil-search-module 'isearch)
(setq evil-want-integration t)
(setq evil-want-keybinding nil)
(setq evil-want-keybinding nil)
(setq evil-want-C-u-scroll t)
(setq evil-want-C-i-jump nil)
;; no vim insert bindings
(setq evil-undo-system 'undo-fu)
:config
(evil-mode 1)
(define-key evil-insert-state-map (kbd "C-g") 'evil-normal-state)
(define-key evil-insert-state-map (kbd "C-h") 'evil-delete-backward-char-and-join)
;; Use visual line motions even outside of visual-line-mode buffers
(evil-global-set-key 'motion "j" 'evil-next-visual-line)
(evil-global-set-key 'motion "k" 'evil-previous-visual-line)
(evil-set-initial-state 'messages-buffer-mode 'normal)
(evil-set-initial-state 'dashboard-mode 'normal))
;;; Vim Bindings Everywhere else
(use-package evil-collection
:after evil
:config
(setq evil-want-integration t)
(evil-collection-init))
(use-package undo-fu
:demand t
:commands (undo-fu-only-undo
undo-fu-only-redo
undo-fu-only-redo-all
undo-fu-disable-checkpoint)
:custom
;; 3 times the default values
(undo-limit (* 3 160000))
(undo-strong-limit (* 3 240000)))
;; Vim-commentary without any extra package
(with-eval-after-load "evil"
(evil-define-operator my-evil-comment-or-uncomment (beg end)
"Toggle comment for the region between BEG and END."
(interactive "<r>")
(comment-or-uncomment-region beg end))
(evil-define-key 'normal 'global (kbd "gc") 'my-evil-comment-or-uncomment))
;; Protesilaos' ef-theme
(use-package ef-themes
:ensure t
:config
;; They are nil by default...
(setq ef-themes-mixed-fonts t
ef-themes-variable-pitch-ui t)
(setq ef-themes-headings ; read the manual's entry or the doc string
'((0 variable-pitch regular 1.5)
(1 variable-pitch regular 1.5)
(2 variable-pitch regular 1.2)
(3 variable-pitch regular 1.2)
(4 variable-pitch regular 1.2)
(5 variable-pitch 1.2) ; absence of weight means `bold'
(6 variable-pitch 1.2)
(7 variable-pitch 1.1)
(t variable-pitch 1.1)))
;; Disable all other themes to avoid awkward blending:
(mapc #'disable-theme custom-enabled-themes)
(load-theme 'ef-autumn :no-confirm))
;;; Vertico
(use-package vertico
:init
(vertico-mode)
:bind (:map minibuffer-local-map
("C-j" . vertico-next)
("C-k" . vertico-previous)
("C-l" . next-history-element)
("C-h" . previous-history-element))
:config
(setq vertico-resize nil
vertico-count 8
vertico-cycle t)
;; This removes the shadowed-out region when finding file from an
;; already arrived directory
(add-hook 'rfn-eshadow-update-overlay-hook #'vertico-directory-tidy))
;; Which-key (to show available commands when typing a prefix say 'C-c')
(use-package which-key
:defer 0
:diminish which-key-mode
:config
(which-key-mode)
(setq which-key-idle-delay 1))
;; Orgmode specific settings
(use-package org
:ensure nil ; org is built-in
:bind (:map org-mode-map
("C-c C-r" . consult-ripgrep)
("C-x C-a" . org-archive-subtree-default))
:config
(setq org-log-done 'time)
;; Collapse the log entries into a "drawer"
(setq org-log-into-drawer t)
(setq org-todo-keywords
'((sequence "TODO(t)" "PROG(p)" "|" "DONE(d)" "CANCELLED(c)")))
;; org-indent-mode turned on by default
(setq org-startup-indented t)
;; Emacs identifies sentences with a single space after fullstop.
(setq sentence-end-double-space nil)
;; Start calendar week from Monday
(setq calendar-week-start-day 1)
;; Turn on cdlatex minor mode in all org buffers
;; See https://orgmode.org/manual/CDLaTeX-mode.html for details
(add-hook 'org-mode-hook #'turn-on-org-cdlatex)
;; Set renderer for LaTeX preview in orgmode
(setq org-preview-latex-default-process 'imagemagick)
;; Setting org-agenda file
;; Eliminates the need for putting org-agenda file to the top everytime
(setq org-agenda-files
'("~/org/agenda.org"
"~/org/misc.org"
"~/org/birthdays.org"))
;; Faces for TODO keywords
(setq org-todo-keyword-faces
'(("PROG" . "orange")
("TODO" . "#cc43a5")
("CANCELLED" . (:foreground "#B50741" :weight bold))))
;; Block parent TODO to DONE if children are undone
(setq org-enforce-todo-dependencies t)
;; Show markup elements (default behaviour)
(setq org-hide-emphasis-markers nil)
;; Add syntax highlighting for org documents
;; Also add native <Tab> behaviour in codeblocks
(setq org-src-fontify-natively t
org-src-tab-acts-natively t)
;; Org specific global keybindings
(global-set-key (kbd "C-c a") #'org-agenda)
(global-set-key (kbd "C-c c") #'org-capture))
;; Org-roam for roam research note taking
(use-package org-roam
:ensure t
:custom
(org-roam-directory "~/org/roam")
:bind (("C-c n l" . org-roam-buffer-toggle)
("C-c n f" . org-roam-node-find)
("C-c n i" . org-roam-node-insert))
:config
(org-roam-setup))
(use-package citar
:no-require
:custom
(org-cite-insert-processor 'citar)
(org-cite-follow-processor 'citar)
(org-cite-activate-processor 'citar)
(citar-bibliography org-cite-global-bibliography)
(citar-bibliography '("~/org/phd-notes/references.bib"))
;; optional: org-cite-insert is also bound to C-c C-x C-@
:bind
(:map org-mode-map ("C-c b" . #'citar-insert-citation))
(:map LaTeX-mode-map ("C-c b" . #'citar-insert-citation)))
;; Automatic text wrapping in all major modes
(setq-default auto-fill-function 'do-auto-fill)
;; Magit
(use-package magit
:ensure t)
(use-package markdown-mode
:defer t
:mode ("*.md" . gfm-mode)
:init (setq markdown-command "multimarkdown")
:config
(setq markdown-fontify-code-blocks-natively t))
;; Deletes trailing whitespace upon saving a file
(add-hook 'before-save-hook 'delete-trailing-whitespace)
;; Vim like scrolling
(setq scroll-step 1
scroll-conservatively 10000
next-screen-context-lines 5
;; move by logical lines rather than visual lines (better for macros)
line-move-visual nil)
;; Marginalia package
(use-package marginalia
:bind (:map minibuffer-local-map
("M-A" . marginalia-cycle))
:init
(marginalia-mode))
;; AucTeX package for LaTeX niceties
(use-package tex
:ensure auctex
:ensure cdlatex
:hook ((LaTeX-mode . electric-pair-mode)
(LaTeX-mode . cdlatex-mode)
(LaTeX-mode . reftex-mode)) ;; Turn on reftex by default in .tex files
:config
;; Activate nice interface between RefTeX and AUCTeX
(setq reftex-plug-into-AUCTeX t)
;; LaTeX document parsing enabled (even on save)
(setq TeX-auto-save t)
(setq TeX-parse-self t)
;; Autosave upon compilation
(setq TeX-save-query nil)
;; Set Zathura as the default pdf viewer
(setq TeX-view-program-selection '((output-pdf "Zathura")))
(add-hook 'LaTeX-mode-hook (lambda () (setq TeX-command-default "LaTeXmk")))
(setq font-latex-fontify-script nil)) ;; disables fontification of formatted text
;; Setup YaSnippet for LaTeX
(use-package yasnippet
:ensure t
:hook (LaTeX-mode . yas-minor-mode-on)
:init
(setq yas-snippet-dir "~/.emacs.d/snippets"))
(use-package orderless
:custom
((completion-styles '(orderless basic))
(completon-category-overrides '((file (styles basic partial-completion))))))
;; Setting leader key in emacs
(evil-set-leader 'normal (kbd "SPC"))
(evil-define-key 'normal LaTeX-mode-map
(kbd "<leader>c") 'TeX-command-run-all)
(evil-define-key nil 'global
(kbd "<leader>o") 'toggle-window-split)
(evil-define-key nil 'global
(kbd "<leader>b") 'bookmark-jump)
;; Text wrapping for specific modes
(defun my-add-to-multiple-hooks (function hooks)
(mapc (lambda (hook)
(add-hook hook function))
hooks))
(defun text-wrapper ()
(lambda ()
(set-fill-column 90)))
(my-add-to-multiple-hooks
'text-wrapper
'(org-mode-hook
markdown-mode-hook
LaTeX-mode-hook))
;; Emacs eat terminal emulation
(use-package eat
:ensure t
:config
(add-hook 'eat-mode-hook (lambda () (evil-local-mode -1))))
;; World-clock customization
;;;; World clock (M-x world-clock)
(use-package time
:ensure nil
:commands (world-clock)
:config
(setq display-time-world-list t)
(setq zoneinfo-style-world-list ; M-x shell RET timedatectl list-timezones
'(("America/Los_Angeles" "Los Angeles")
("America/New_York" "New York")
("UTC" "UTC")
("Europe/Berlin" "Aachen")
("Europe/Helsinki" "Helsinki")
("Asia/Kolkata" "Chennai")
("Asia/Singapore" "Singapore")
("Asia/Tokyo" "Tokyo")
("Australia/Sydney" "Sydney")))
;; All of the following variables are for Emacs 28
(setq world-clock-list t)
(setq world-clock-time-format "%R %z (%Z) %A %d %B")
(setq world-clock-buffer-name "*world-clock*") ; Placement handled by `display-buffer-alist'
(setq world-clock-timer-enable t)
(setq world-clock-timer-second 60))
;; TODO add consult and embark packages
;; TODO play around with General.el
(use-package consult
:ensure t)
;; Replace "yes or no" with "y or n"
(setq use-short-answers t)
;;;; Emacs server (allow emacsclient to connect to running session)
(use-package server
:ensure nil
:defer 1
:config
(setq server-client-instructions nil)
(unless (server-running-p)
(server-start)))
;;;; Dired (Directory Editor) customizations
(use-package dired
:ensure nil
:commands (dired)
:hook
((dired-mode . dired-hide-details-mode)
(dired-mode . hl-line-mode))
:config
(setq dired-recursive-copies 'always)
(setq dired-recursive-deletes 'always)
(setq dired-dwim-target t))
(use-package dired-subtree
:ensure t
:after dired
:bind
( :map dired-mode-map
("<tab>" . dired-subtree-toggle)
("TAB" . dired-subtree-toggle)
("<backtab>" . dired-subtree-remove)
("S-TAB" . dired-subtree-remove))
:config
(setq dired-subtree-use-backgrounds nil))
;; Minibuffer keybindings
(define-key minibuffer-local-map (kbd "C-v") 'yank)
;; Put autosave files in one folder
(setq backup-directory-alist `(("." . "~/.autosaves")))
;; Python-mode config
;; Use TAB in place of C-M-i for completion-at-point
;; (setq tab-always-indent 'complete)
(setq python-shell-enable-font-lock nil)
;; Disable byte-compile warnings during package installation
(add-to-list 'display-buffer-alist
'("\\`\\*\\(Warnings\\|Compile-Log\\)\\*\\'"
(display-buffer-no-window)
(allow-no-window . t)))
(defun prot/keyboard-quit-dwim ()
"Do-What-I-Mean behaviour for a general `keyboard-quit'.
The generic `keyboard-quit' does not do the expected thing when
the minibuffer is open. Whereas we want it to close the
minibuffer, even without explicitly focusing it.
The DWIM behaviour of this command is as follows:
- When the region is active, disable it.
- When a minibuffer is open, but not focused, close the minibuffer.
- When the Completions buffer is selected, close it.
- In every other case use the regular `keyboard-quit'."
(interactive)
(cond
((region-active-p)
(keyboard-quit))
((derived-mode-p 'completion-list-mode)
(delete-completion-window))
((> (minibuffer-depth) 0)
(abort-recursive-edit))
(t
(keyboard-quit))))
(define-key global-map (kbd "C-g") #'prot/keyboard-quit-dwim)
;; Function to instantly toggle between vertical and horizontal split
(defun toggle-window-split ()
(interactive)
(if (= (count-windows) 2)
(let* ((this-win-buffer (window-buffer))
(next-win-buffer (window-buffer (next-window)))
(this-win-edges (window-edges (selected-window)))
(next-win-edges (window-edges (next-window)))
(this-win-2nd (not (and (<= (car this-win-edges)
(car next-win-edges))
(<= (cadr this-win-edges)
(cadr next-win-edges)))))
(splitter
(if (= (car this-win-edges)
(car (window-edges (next-window))))
'split-window-horizontally
'split-window-vertically)))
(delete-other-windows)
(let ((first-win (selected-window)))
(funcall splitter)
(if this-win-2nd (other-window 1))
(set-window-buffer (selected-window) this-win-buffer)
(set-window-buffer (next-window) next-win-buffer)
(select-window first-win)
(if this-win-2nd (other-window 1))))))
;; Mainly for running some inferior process that doesn't require a lot
;; of screen real estate (`inferior-python' for example).
;; TODO: Really understand this function.
(defun pani/my-split-window-below-30 (&optional window-to-split)
"Split WINDOW-TO-SPLIT into two windows, with the lower window occupying ~30% of the height.
WINDOW-TO-SPLIT defaults to the selected window.
Returns the new window."
(interactive)
(let* ((window (or window-to-split (selected-window)))
(total-height (window-total-height window))
(size (- (floor (* total-height 0.3)))))
(unless (>= (- total-height size) window-min-height)
(error "Resulting window too small"))
(split-window window size)))
;; mu4e for email
(use-package mu4e
:ensure nil
:config
;; This is set to `t' to avoid mail syncing issues when using mbsync
(setq mu4e-change-filenames-when-moving t)
(setq user-mail-address "[email protected]")
(setq user-full-name "Ashish Panigrahi")
(setq
mu4e-drafts-folder "/Drafts"
mu4e-sent-folder "/Sent"
mu4e-refile-folder "/Archive"
mu4e-trash-folder "/Trash")
;; some customizations
(setq
mu4e-attachment-dir "~/downloads"
mu4e-view-show-images t
mu4e-compose-signature-auto-include nil
mu4e-view-show-addresses t
mu4e-hide-index-messages t
mu4e-compose-dont-reply-to-self t)
(setq mu4e-maildir-shortcuts
'(("/INBOX" . ?i)
("/Sent" . ?s)
("/Trash" . ?t)
("/Draft" . ?d))))
;; sending email in emacs
(use-package smtpmail
:ensure nil
:after message
:config
(setq message-send-mail-function 'smtpmail-send-it)
(setq smtpmail-smtp-server "smtp.migadu.com")
(setq smtpmail-smtp-service 465)
(setq smtpmail-debug-info t)
(setq smtpmail-stream-type 'tls))
;; Add direnv integration in emacs
;; envrc package
(use-package envrc
:ensure t
:hook (after-init . envrc-global-mode)
(python-mode . envrc-global-mode))
;; Autocompletion via corfu
(use-package corfu
:ensure t
:custom
(corfu-cycle t) ; enable cycling for `corfu-next/previous'
:config
(setq tab-always-indent 'complete)
(setq corfu-preview-current nil)
(corfu-popupinfo-mode 1) ; shows documentation after `corfu-popupinfo-delay'
;; Sort by input history (no need to modify `corfu-sort-function').
(with-eval-after-load 'savehist
(corfu-history-mode 1)
(add-to-list 'savehist-additional-variables 'corfu-history))
:bind (:map corfu-map ("<tab>" . corfu-complete))
:init
(global-corfu-mode))
;; LSP server using eglot
(use-package eglot
:defer t
:hook (python-mode . eglot-ensure)
:config
;; (setq eglot-managed-mode-hook (list (lambda () (eldoc-mode -1))))
(setq eglot-ignored-server-capabilities
'(:documentHighlightProvider))) ;; disables highlighting words under active cursor
;; eldoc config
(use-package eldoc
:defer t ;; built-in
:config
;; disables resizing of echo area for automatic eldoc documentation
;; under the cursor
(setq eldoc-echo-area-use-multiline-p nil))
;; `proced' (process monitor, similar to `top')
;; This is a built-in emacs package
(use-package proced
:ensure nil
:commands (proced)
:config
(setq proced-auto-update-flag 'visible)
(setq proced-enable-color-flag t)
(setq proced-auto-update-interval 5)
(setq proced-descend t)
(setq proced-filter 'user))
;; Python config
(use-package python
:ensure nil ; because this is built-in
:config
(setq python-indent-offset 4)
(setq python-shell-interpreter "ipython")
(add-hook 'eat-mode-hook #'turn-off-evil-mode nil))
;; Elfeed for RSS
(use-package elfeed
:ensure t
:bind (("C-c e" . elfeed)
:map elfeed-search-mode-map
("C-c C-c" . elfeed-update))
:config
(setq elfeed-use-curl t)
(setq elfeed-curl-max-connections 20)
(setq-default elfeed-search-filter "@6-months-ago +unread")
(setq elfeed-db-directory "~/.emacs.d/elfeed/")
(setq elfeed-enclosure-default-dir "~/downloads/")
(setq elfeed-feeds
'("https://www.archlinux.org/feeds/news/"
("https://emacsredux.com/atom.xml" emacs)
"https://peterwittek.com/feeds/all.atom.xml"
"https://gregorygundersen.com/feed.xml"
"https://mikeinnes.github.io/feed.xml"
"https://rosenzweig.io/feed.xml"
("https://karthinks.com/index.xml" emacs blog)
"https://adol.pw/index.xml"
("https://marci.gunyho.com/rss" blog)
"https://andreyor.st/feed.xml"
"https://www.paritybit.ca/feed.xml"
"https://m-malinowski.github.io/feed.xml"
"https://kishvanchee.com/index.xml"
"https://dataswamp.org/~solene/rss.xml"
"https://drewdevault.com/blog/index.xml"
("https://11de784a.github.io/feed.xml" blog)
"https://yarmo.eu/atom.xml"
("https://timharek.no/rss.xml" blog)
"https://terrytao.wordpress.com/feed/"
("https://protesilaos.com/commentary.xml" blog life)
("https://protesilaos.com/codelog.xml" emacs blog tech)
("http://irreal.org/blog/?tag=emacs&feed=rss2" emacs blog)
("https://ogbe.net/blog-feed.xml" emacs blog)
("https://themkat.net/feed.xml" emacs blog)
"https://www.romanzolotarev.com/rss.xml"
("https://nullprogram.com/feed/" emacs blog)
"https://www.unixsheikh.com/feed.rss"
"https://matt.might.net/articles/feed.rss"
("https://lambdaland.org/index.xml" emacs blog)
("https://200ok.ch/atom.xml" emacs blog)
("https://sachachua.com/blog/category/emacs/feed/index.xml" emacs blog)
"https://simon.peytonjones.org/feed.xml"
"https://jvns.ca/atom.xml"
"http://100r.co/links/rss.xml"
"https://anchor.fm/s/c761a04/podcast/rss"
("https://changelog.complete.org/feed" blog tech)
("https://phdcomics.com/gradfeed.php" comics)
("https://www.noendcomic.com/rss.php" comics)
("https://xkcd.com/atom.xml" comics)
("https://www.smbc-comics.com/comic/rss" comics)
("https://www.commitstrip.com/en/feed/" comics))))
;; Testing sly package for common lisp
(use-package sly
:defer t)
;; rg.el for ripgrep in Emacs
(use-package rg
:ensure t)