From 744d86dd0be3473c17490ecfb789489c33e8c1c2 Mon Sep 17 00:00:00 2001 From: BardofSprites <89086143+BardofSprites@users.noreply.github.com> Date: Sun, 29 Dec 2024 19:45:57 -0500 Subject: reformatting --- bard-emacs-modules/bard-emacs-completion.el | 2 +- bard-emacs-modules/bard-emacs-eshell.el | 18 +++++++++--------- bard-emacs-modules/bard-emacs-writing.el | 12 ------------ 3 files changed, 10 insertions(+), 22 deletions(-) (limited to 'bard-emacs-modules') diff --git a/bard-emacs-modules/bard-emacs-completion.el b/bard-emacs-modules/bard-emacs-completion.el index 9fa6c21..6798965 100644 --- a/bard-emacs-modules/bard-emacs-completion.el +++ b/bard-emacs-modules/bard-emacs-completion.el @@ -128,7 +128,7 @@ (use-package embark :ensure t - :bind + :bind* (("C-," . bard-embark-act-no-quit) ("C-." . bard-embark-act-quit)) :config diff --git a/bard-emacs-modules/bard-emacs-eshell.el b/bard-emacs-modules/bard-emacs-eshell.el index e934922..0fbbe4b 100644 --- a/bard-emacs-modules/bard-emacs-eshell.el +++ b/bard-emacs-modules/bard-emacs-eshell.el @@ -11,20 +11,20 @@ 'face 'mode-line-highlight) (propertize (current-time-string) 'face 'font-lock-keyword-face) - (propertize "Time for another recreational programming session." - 'face 'warning))) + (propertize "Time for another recreational programming session." + 'face 'warning))) (setq bard/eshell-aliases '((g . magit) - (gl . magit-log) - (d . dired) - (o . find-file) + (gl . magit-log) + (d . dired) + (o . find-file) (oo . find-file-other-window) - (vim . find-file) - (l . (lambda () (eshell/ls '-la))) - (eshell/clear . eshell/clear-scrollback))) + (vim . find-file) + (l . (lambda () (eshell/ls '-la))) + (eshell/clear . eshell/clear-scrollback))) (mapc (lambda (alias) - (defalias (car alias) (cdr alias))) + (defalias (car alias) (cdr alias))) bard/eshell-aliases)) (use-package eshell diff --git a/bard-emacs-modules/bard-emacs-writing.el b/bard-emacs-modules/bard-emacs-writing.el index 8ad8526..3d65f71 100644 --- a/bard-emacs-modules/bard-emacs-writing.el +++ b/bard-emacs-modules/bard-emacs-writing.el @@ -201,16 +201,4 @@ :config (pdf-tools-install)) -(use-package citar - :ensure t - :config - (setq citar-bibliography '("~/Notes/denote/bib/references.bib")) - (setq org-cite-global-bibliography '("~/Notes/denote/bib/references.bib")) - (setq org-cite-insert-processor 'citar) - (setq org-cite-follow-processor 'citar) - (setq org-cite-activate-processor 'citar) - (setq citar-bibliography org-cite-global-bibliography) - :bind - (:map org-mode-map ("C-c b" . #'citar-insert-citation))) - (provide 'bard-emacs-writing) -- cgit v1.2.3