Biblio
This commit is contained in:
parent
fbecb46ab2
commit
66c97037d6
3 changed files with 20 additions and 3 deletions
|
@ -59,11 +59,14 @@
|
|||
;;
|
||||
;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how
|
||||
;; they are implemented.
|
||||
(map! :after avy
|
||||
:leader
|
||||
(map! :leader
|
||||
:desc "Avy - Go To Any Char"
|
||||
:n "a" #'avy-goto-char-timer)
|
||||
|
||||
(map! :after org
|
||||
:desc "Open At Point"
|
||||
:n "g[" #'org-open-at-point)
|
||||
|
||||
(map! :after evil
|
||||
:desc "Evil - Scroll Up"
|
||||
:n "C-k" #'evil-scroll-up
|
||||
|
@ -88,3 +91,15 @@
|
|||
(after! magit
|
||||
(evil-define-key 'normal 'global (kbd "<leader>g") 'magit-file-dispatch)
|
||||
(evil-define-key 'normal 'global (kbd "<leader>r") 'magit-status))
|
||||
|
||||
(use-package! org-transclusion
|
||||
:after org
|
||||
:init
|
||||
(map!
|
||||
:map global-map "<f12>" #'org-transclusion-add
|
||||
:leader
|
||||
:prefix "n"
|
||||
:desc "Org Transclusion Mode" "t" #'org-transclusion-mode))
|
||||
|
||||
(after! citar
|
||||
(setq! citar-bibliography '("~/org-roam/Citations.bib")))
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
:tools
|
||||
;;ansible
|
||||
;;biblio ; Writes a PhD for you (citation needed)
|
||||
biblio ; Writes a PhD for you (citation needed)
|
||||
;;debugger ; FIXME stepping through code, to help you add bugs
|
||||
;;direnv
|
||||
;;docker
|
||||
|
|
|
@ -48,3 +48,5 @@
|
|||
;(unpin! pinned-package another-pinned-package)
|
||||
;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
|
||||
;(unpin! t)
|
||||
|
||||
(package! org-transclusion)
|
||||
|
|
Loading…
Add table
Reference in a new issue