summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-05-23 23:50:20 +0300
committerThanos Apollo <[email protected]>2023-05-23 23:50:20 +0300
commit93186b13d89325ca9c27601ef49e464db4ad336f (patch)
tree2dd9b320125d447996954c64ddddc1433ebfc134
parent433479b3ee9de91773f17bb06885bdef839abe59 (diff)
emacs: Update feed and add imenu binding
-rwxr-xr-xemacs.org21
1 files changed, 7 insertions, 14 deletions
diff --git a/emacs.org b/emacs.org
index 3e0e89b..8a330bf 100755
--- a/emacs.org
+++ b/emacs.org
@@ -689,12 +689,8 @@ Hook with ~dired-mode~
#+begin_src emacs-lisp
(require 'elfeed)
(require 'elfeed-goodies)
- (setq elfeed-feeds (quote
- (
- ("https://hackaday.com/blog/feed/"
+ (setq elfeed-feeds '(("https://hackaday.com/blog/feed/"
hackaday linux)
- ("https://thanosapollo.com/public/feed.xml"
- me)
("https://protesilaos.com/news.xml"
protesilaos)
("https://protesilaos.com/codelog.xml"
@@ -702,14 +698,6 @@ Hook with ~dired-mode~
("https://guix.gnu.org/feeds/blog.atom"
gnu guix)
("https://thanosapollo.com/posts/index.xml"
- thanos me)
- ("https://rss.nytimes.com/services/xml/rss/nyt/Science.xml"
- NYT science news)
- ("https://rss.nytimes.com/services/xml/rss/nyt/Health.xml"
- NYT med news)
- ("https://rss.nytimes.com/services/xml/rss/nyt/World.xml"
- NYT world news)
- ("https://thanosapollo.com/posts/index.xml"
thanos)
("http://nullprogram.com/feed/"
emacs linux)
@@ -744,7 +732,9 @@ Hook with ~dired-mode~
("https://www.youtube.com/feeds/videos.xml?channel_id=UCqYPhGiB9tkShZorfgcL2lA"
WhatIveLearned video)
("http://wikileaks.org/feed"
- wikileaks))))
+ wikileaks)
+ ("https://hackernoon.com/feed"
+ hackernoon)))
#+end_src
** Watch Videos
Create function to watch videos using ~mpv~
@@ -1276,6 +1266,9 @@ Set aliases for emacs functions and ~PATH~
(global-set-key (kbd "C-c p e") 'password-store-edit)
(global-set-key (kbd "C-c p g") 'password-store-generate)
+ ;; Imenu
+ (global-set-key (kbd "C-c m") 'consult-imenu)
+
(define-prefix-command 'thanos/applications-map)
(define-key thanos/applications-map (kbd "q") 'chatgpt-query)