diff options
| author | Craig Jennings <c@cjennings.net> | 2024-04-08 17:16:29 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-04-08 17:16:29 -0500 |
| commit | a55a5248bd2dae5f849476d0f7b5dcd8d91cf929 (patch) | |
| tree | 834a7b012f6823b53ee2f516384b7bc4c4ec819b /assets/elfeed-dashboard.org | |
| parent | 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 (diff) | |
fit and finish work
- gptel: added gptel-send-region with global keybinding
- projectile: made project-switch-actions more efficient with regexp
- prog-go: removed disabled code
- mu4e: capture template captures region if selected
- system utils: merged bury alive with other killing buffer code
- org-capture: renamed *website-clipper to org-webpage-clipper
- rg: auto switch to ripgrep-results window when ripgrep search completes
- dashboard: remove dashboard banner custom face
General
- moved abbrev_defs to assets
- removed gitmodules file
- updated packages
- fixed docstring and formatting throughout
Custom-Functions
- move cj/merge-list-to-list to custom-functions
- add remove leading trailing whitespace function
- corrected arrayify prompt
Font-Config
- added font point sizes in fontaine menu
- make default font point size 11
Python
- adding back python poetry support
- added cj/python-setup method
- merge python and python-mode configurations
(they are the same built-in package)
Show-Kill-Ring
- show-kill-ring displays in another read-only buffer
- show-kill-ring exits with q
Elfeed
- moved elfeed-feeds.org to assets
- removed Wired from elfeed feeds
- moved ElfeedDB to user-emacs-directory/.elfeed-db
- moved elfeed-dashboard.org to assets
Diffstat (limited to 'assets/elfeed-dashboard.org')
| -rw-r--r-- | assets/elfeed-dashboard.org | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/assets/elfeed-dashboard.org b/assets/elfeed-dashboard.org new file mode 100644 index 00000000..0d9e90f6 --- /dev/null +++ b/assets/elfeed-dashboard.org @@ -0,0 +1,61 @@ + +== Feed Reader Dashboard == + +* Actions + + [U] Update Feeds + [s] Search + [E] Edit + [g] Refresh Feed Counts + [q] Quit + +* Bookmarks + + [u] All Unread ([[elfeed:+unread][ 3]]/[[elfeed:][ 2266]]) + [m] Must Read ([[elfeed:+unread +mustread][ 1]]/[[elfeed:+mustread][ 31]]) + +** Sources + [p] Podcasts ([[elfeed:+unread +podcasts][ 0]]/[[elfeed:+podcasts][ 1758]]) + [v] Videos ([[elfeed:+unread +videos][ 0]]/[[elfeed:+videos][ 261]]) + +** Tech Aggregators + [h] Hacker News ([[elfeed:+unread +hackernews][ 0]]/[[elfeed:+hackernews][ 24]]) + [l] Lobsters ([[elfeed:+unread +lobsters][ 0]]/[[elfeed:+lobsters][ 0]]) + +** Topics + [t] Tech News ([[elfeed:+unread +technews][ 2]]/[[elfeed:+technews][ 172]]) + [T] Tech ([[elfeed:+unread +tech][ 0]]/[[elfeed:+tech][ 65]]) + [b] Blogs ([[elfeed:+unread +blogs][ 1]]/[[elfeed:+blogs][ 71]]) + [e] Emacs ([[elfeed:+unread +emacs][ 0]]/[[elfeed:+emacs][ 91]]) + [c] Code ([[elfeed:+unread +code][ 0]]/[[elfeed:+code][ 135]]) + [C] Cooking ([[elfeed:+unread +cooking][ 0]]/[[elfeed:+cooking][ 11]]) + [M] Comedy ([[elfeed:+unread +comedy][ 0]]/[[elfeed:+comedy][ 15]]) + [j] Jobs ([[elfeed:+unread +jobs][ 0]]/[[elfeed:+jobs][ 0]]) + +* Configuration + :PROPERTIES: + :VISIBILITY: hideall + :END: + + Press "E" to edit and M-x elfeed-dashboard-mode to go back + + #+STARTUP: showall showstars indent + #+KEYMAP: u | elfeed-dashboard-query "+unread" + #+KEYMAP: m | elfeed-dashboard-query "+unread +mustread" + #+KEYMAP: p | elfeed-dashboard-query "+unread +podcasts" + #+KEYMAP: v | elfeed-dashboard-query "+unread +videos" + #+KEYMAP: h | elfeed-dashboard-query "+unread +hackernews" + #+KEYMAP: l | elfeed-dashboard-query "+unread +lobsters" + #+KEYMAP: t | elfeed-dashboard-query "+unread +technews" + #+KEYMAP: T | elfeed-dashboard-query "+unread +tech" + #+KEYMAP: b | elfeed-dashboard-query "+unread +blogs" + #+KEYMAP: e | elfeed-dashboard-query "+unread +emacs" + #+KEYMAP: c | elfeed-dashboard-query "+unread +code" + #+KEYMAP: C | elfeed-dashboard-query "+unread +cooking" + #+KEYMAP: M | elfeed-dashboard-query "+unread +comedy" + #+KEYMAP: j | elfeed-dashboard-query "+unread +jobs" + #+KEYMAP: s | elfeed + #+KEYMAP: g | elfeed-dashboard-update-links + #+KEYMAP: U | elfeed-dashboard-update + #+KEYMAP: E | elfeed-dashboard-edit + #+KEYMAP: q | kill-current-buffer |
