Compare commits
5 Commits
master
...
84d941ed62
| Author | SHA1 | Date | |
|---|---|---|---|
|
84d941ed62
|
|||
|
f42e7c2192
|
|||
|
fa19e34239
|
|||
|
51d2463a8d
|
|||
|
5e0f9a61be
|
@@ -10,9 +10,6 @@
|
|||||||
;; Map elfeed to global keybinding
|
;; Map elfeed to global keybinding
|
||||||
(map! :leader :n "o e" #'=rss
|
(map! :leader :n "o e" #'=rss
|
||||||
:desc "RSS reader")
|
:desc "RSS reader")
|
||||||
;; Map wallabag to global keybinding
|
|
||||||
(map! :leader :n "o w" #'=wallabag
|
|
||||||
:desc "Read saved articles")
|
|
||||||
;; Keybindings for org-noter
|
;; Keybindings for org-noter
|
||||||
(map! :mode pdf-view-mode
|
(map! :mode pdf-view-mode
|
||||||
:n "i" #'org-noter-insert-note
|
:n "i" #'org-noter-insert-note
|
||||||
|
|||||||
11
+mail.el
11
+mail.el
@@ -18,14 +18,6 @@
|
|||||||
(smtpmail-smtp-user . "akasroua@gmail.com")
|
(smtpmail-smtp-user . "akasroua@gmail.com")
|
||||||
(user-mail-address . "akasroua@gmail.com"))
|
(user-mail-address . "akasroua@gmail.com"))
|
||||||
t)
|
t)
|
||||||
(set-email-account! "ugent"
|
|
||||||
'((mu4e-sent-folder . "/ugent/sent")
|
|
||||||
(mu4e-drafts-folder . "/ugent/drafts")
|
|
||||||
(mu4e-trash-folder . "/ugent/trash")
|
|
||||||
(mu4e-refile-folder . "/ugent/archive")
|
|
||||||
(smtpmail-smtp-user . "amin.kasrouaouam@ugent.be")
|
|
||||||
(user-mail-address . "amin.kasrouaouam@ugent.be"))
|
|
||||||
t)
|
|
||||||
(set-email-account! "disroot"
|
(set-email-account! "disroot"
|
||||||
'((mu4e-sent-folder . "/disroot/sent")
|
'((mu4e-sent-folder . "/disroot/sent")
|
||||||
(mu4e-drafts-folder . "/disroot/drafts")
|
(mu4e-drafts-folder . "/disroot/drafts")
|
||||||
@@ -46,8 +38,7 @@
|
|||||||
;; Use shortcuts to access inboxes easily
|
;; Use shortcuts to access inboxes easily
|
||||||
(setq mu4e-maildir-shortcuts
|
(setq mu4e-maildir-shortcuts
|
||||||
'(("/disroot/inbox" . ?d)
|
'(("/disroot/inbox" . ?d)
|
||||||
("/gmail/inbox" . ?g)
|
("/gmail/inbox" . ?g)))
|
||||||
("/ugent/inbox" . ?u)))
|
|
||||||
;; Change mu4e bookmarks
|
;; Change mu4e bookmarks
|
||||||
(setq mu4e-bookmarks '((:name "Unread messages" :query "flag:unread AND NOT flag:trashed" :key 117)
|
(setq mu4e-bookmarks '((:name "Unread messages" :query "flag:unread AND NOT flag:trashed" :key 117)
|
||||||
(:name "Today's messages" :query "date:today..now" :key 116)
|
(:name "Today's messages" :query "date:today..now" :key 116)
|
||||||
|
|||||||
4
+org.el
4
+org.el
@@ -22,8 +22,8 @@
|
|||||||
org-agenda-block-separator nil
|
org-agenda-block-separator nil
|
||||||
org-agenda-compact-blocks t
|
org-agenda-compact-blocks t
|
||||||
org-agenda-start-day nil
|
org-agenda-start-day nil
|
||||||
org-agenda-span 1
|
org-agenda-span 7
|
||||||
org-agenda-start-on-weekday nil)
|
org-agenda-start-on-weekday 0)
|
||||||
(setq org-super-agenda-groups '((:name "Overdue"
|
(setq org-super-agenda-groups '((:name "Overdue"
|
||||||
:deadline past
|
:deadline past
|
||||||
:order 0)
|
:order 0)
|
||||||
|
|||||||
30
+rss.el
Normal file
30
+rss.el
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
;;; +rss.el -*- lexical-binding: t; -*-
|
||||||
|
;; Elfeed configuration
|
||||||
|
;;
|
||||||
|
;; Synchronize elfeed with Miniflux
|
||||||
|
(setq elfeed-use-curl t
|
||||||
|
elfeed-protocol-feeds (list
|
||||||
|
(list "fever+https://coolneng@rss.coolneng.duckdns.org"
|
||||||
|
:api-url "https://rss.coolneng.duckdns.org/fever/"
|
||||||
|
:password (auth-source-pass-get 'secret "api/miniflux")))
|
||||||
|
elfeed-sort-order 'ascending
|
||||||
|
elfeed-search-filter "@all +unread"
|
||||||
|
elfeed-goodies/tag-column-width 0)
|
||||||
|
(elfeed-protocol-enable)
|
||||||
|
;; Update RSS feeds on startup
|
||||||
|
(add-hook! 'elfeed-search-mode-hook 'elfeed-update)
|
||||||
|
;; Use different font and show article in fullscreen
|
||||||
|
(setq elfeed-show-entry-switch #'switch-to-buffer)
|
||||||
|
(defadvice! +rss-elfeed-wrap-h-nicer ()
|
||||||
|
"Enhances an elfeed entry's readability by wrapping it to a width of
|
||||||
|
`fill-column' and centering it with `visual-fill-column-mode'."
|
||||||
|
:override #'+rss-elfeed-wrap-h
|
||||||
|
(setq-local truncate-lines nil
|
||||||
|
shr-width 160
|
||||||
|
visual-fill-column-center-text t
|
||||||
|
default-text-properties '(line-height 1.1))
|
||||||
|
(let ((inhibit-read-only t)
|
||||||
|
(inhibit-modification-hooks t))
|
||||||
|
(visual-fill-column-mode)
|
||||||
|
(setq-local shr-current-font '(:family "Lato" :height 1.1))
|
||||||
|
(set-buffer-modified-p nil)))
|
||||||
57
config.el
57
config.el
@@ -88,61 +88,8 @@
|
|||||||
(setq display-line-numbers-type 'relative)
|
(setq display-line-numbers-type 'relative)
|
||||||
;; Use pass as auth-source
|
;; Use pass as auth-source
|
||||||
(add-to-list 'auth-sources 'password-store)
|
(add-to-list 'auth-sources 'password-store)
|
||||||
;; Set up wallabag
|
;; Set up RSS reader
|
||||||
(after! wallabag
|
(after! elfeed (load! "+rss"))
|
||||||
(setq wallabag-host "https://wallabag.coolneng.duckdns.org"
|
|
||||||
wallabag-username "coolneng"
|
|
||||||
wallabag-password (auth-source-pass-get 'secret "api/wallabag")
|
|
||||||
wallabag-clientid (auth-source-pass-get "clientid" "api/wallabag")
|
|
||||||
wallabag-secret (auth-source-pass-get "api-secret" "api/wallabag")
|
|
||||||
wallabag-show-sidebar 't
|
|
||||||
wallabag-show-entry-switch 'switch-to-buffer
|
|
||||||
url-automatic-caching t)
|
|
||||||
(add-hook! 'wallabag-after-render-hook 'wallabag-search-update-and-clear-filter))
|
|
||||||
(add-hook! 'doom-real-buffer-functions
|
|
||||||
(defun +rss-buffer-p (buf)
|
|
||||||
(string-match-p "^\\*wallabag" (buffer-name buf))))
|
|
||||||
(defvar +wallabag-workspace-name "*wallabag*")
|
|
||||||
(defun =wallabag ()
|
|
||||||
"Activate (or switch to) `wallabag' in its workspace."
|
|
||||||
(interactive)
|
|
||||||
(if (modulep! :ui workspaces)
|
|
||||||
(progn
|
|
||||||
(+workspace-switch +wallabag-workspace-name t)
|
|
||||||
(doom/switch-to-scratch-buffer)
|
|
||||||
(wallabag)
|
|
||||||
(+workspace/display))
|
|
||||||
(setq +wallabag--wconf (current-window-configuration))
|
|
||||||
(delete-other-windows)
|
|
||||||
(switch-to-buffer (doom-fallback-buffer))
|
|
||||||
(wallabag)))
|
|
||||||
;; Set up elfeed
|
|
||||||
(after! elfeed
|
|
||||||
(setq elfeed-use-curl t)
|
|
||||||
(setq elfeed-protocol-feeds (list
|
|
||||||
(list "fever+https://coolneng@rss.coolneng.duckdns.org"
|
|
||||||
:api-url "https://rss.coolneng.duckdns.org/fever/"
|
|
||||||
:password (auth-source-pass-get 'secret "api/miniflux"))))
|
|
||||||
(setq elfeed-sort-order 'ascending
|
|
||||||
elfeed-search-filter "@all +unread"
|
|
||||||
elfeed-goodies/tag-column-width 0)
|
|
||||||
(elfeed-protocol-enable)
|
|
||||||
(add-hook! 'elfeed-search-mode-hook 'elfeed-update)
|
|
||||||
;; Use different font and show article in fullscreen
|
|
||||||
(setq elfeed-show-entry-switch #'switch-to-buffer)
|
|
||||||
(defadvice! +rss-elfeed-wrap-h-nicer ()
|
|
||||||
"Enhances an elfeed entry's readability by wrapping it to a width of
|
|
||||||
`fill-column' and centering it with `visual-fill-column-mode'."
|
|
||||||
:override #'+rss-elfeed-wrap-h
|
|
||||||
(setq-local truncate-lines nil
|
|
||||||
shr-width 160
|
|
||||||
visual-fill-column-center-text t
|
|
||||||
default-text-properties '(line-height 1.1))
|
|
||||||
(let ((inhibit-read-only t)
|
|
||||||
(inhibit-modification-hooks t))
|
|
||||||
(visual-fill-column-mode)
|
|
||||||
(setq-local shr-current-font '(:family "Lato" :height 1.1))
|
|
||||||
(set-buffer-modified-p nil))))
|
|
||||||
;; Set up the mail stack
|
;; Set up the mail stack
|
||||||
(after! mu4e (load! "+mail"))
|
(after! mu4e (load! "+mail"))
|
||||||
;; HACK Enable AOT native compilation
|
;; HACK Enable AOT native compilation
|
||||||
|
|||||||
2
init.el
2
init.el
@@ -105,7 +105,7 @@
|
|||||||
;;terraform ; infrastructure as code
|
;;terraform ; infrastructure as code
|
||||||
;;tmux ; an API for interacting with tmux
|
;;tmux ; an API for interacting with tmux
|
||||||
tree-sitter ; syntax and parsing, sitting in a tree...
|
tree-sitter ; syntax and parsing, sitting in a tree...
|
||||||
upload ; map local to remote projects via ssh/ftp
|
;;upload ; map local to remote projects via ssh/ftp
|
||||||
|
|
||||||
:lang
|
:lang
|
||||||
;;agda ; types of types of types of types...
|
;;agda ; types of types of types of types...
|
||||||
|
|||||||
@@ -9,8 +9,6 @@
|
|||||||
(package! org-super-agenda)
|
(package! org-super-agenda)
|
||||||
;; Save recipes to org file
|
;; Save recipes to org file
|
||||||
(package! org-chef)
|
(package! org-chef)
|
||||||
;; Wallabag client
|
|
||||||
(package! wallabag :recipe (:host github :repo "chenyanming/wallabag.el" :files ("*.el" "*.alist" "*.css")))
|
|
||||||
;; Miniflux integration for elfeed
|
;; Miniflux integration for elfeed
|
||||||
(package! elfeed-protocol)
|
(package! elfeed-protocol)
|
||||||
;; Prettier LaTeX source blocks
|
;; Prettier LaTeX source blocks
|
||||||
|
|||||||
Reference in New Issue
Block a user