Compare commits

..

2 Commits

Author SHA1 Message Date
9b8ca71e69 Remap previous/next buffer to prevent conflicts 2022-11-24 13:22:33 +01:00
309e692435 Add description to wallabag and elfeed 2022-11-24 13:22:24 +01:00

View File

@@ -8,9 +8,11 @@
:n "RET" #'polymode-eval-chunk :n "RET" #'polymode-eval-chunk
:desc "Evaluate code block") :desc "Evaluate code block")
;; 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")
;; Map wallabag to global keybinding ;; Map wallabag to global keybinding
(map! :leader :n "o w" #'=wallabag) (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
@@ -27,8 +29,8 @@
:n "S" #'mu4e-view-save-attachments :n "S" #'mu4e-view-save-attachments
:desc "Save the chosen mail attachments") :desc "Save the chosen mail attachments")
;; Keybindings for next/previous buffer ;; Keybindings for next/previous buffer
(map! :n "C-j" #'previous-buffer) (map! :n "C-c j" #'previous-buffer)
(map! :n "C-k" #'next-buffer) (map! :n "C-c k" #'next-buffer)
;; Keybindings for citar ;; Keybindings for citar
(map! :leader :n "n B" #'citar-open-files (map! :leader :n "n B" #'citar-open-files
:desc "Open associated PDF with bibliography entry") :desc "Open associated PDF with bibliography entry")