From aa4f5159349b6079e1db7669907d2656ac882bd2 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Sun, 31 Dec 2023 09:08:43 -0500 Subject: [PATCH] fix(emacs): remove `hledger-mode` fluff Signed-off-by: Lucas Sta Maria --- .emacs.d/include/misc.el | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.emacs.d/include/misc.el b/.emacs.d/include/misc.el index 5255709..5ed0781 100644 --- a/.emacs.d/include/misc.el +++ b/.emacs.d/include/misc.el @@ -91,15 +91,13 @@ (setq hledger-currency-string "$") (add-to-list 'auto-mode-alist '("\\.journal\\'" . hledger-mode)) (setq hledger-jfile "~/finance/2024.journal") -(add-to-list 'company-backends 'hledger-company) -(add-to-list 'ac-modes 'hledger-mode) -(add-hook 'hledger-mode-hook - (lambda () - (setq-local ac-sources '(hledger-ac-source)))) ;; SLIME (setq inferior-lisp-program "sbcl") +;; Copilot +(define-key copilot-completion-map (kbd "") 'copilot-accept-completion) + (provide 'misc) ;;; misc.el ends here