From b2a4a744c036b5cee18ca1fb57d25ee3e74e372f Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Tue, 21 Apr 2026 10:01:33 -0500 Subject: [PATCH] Minor edits --- .config/emacs/config.el | 7 +++++++ .config/emacs/config.org | 12 ++++++++++++ 2 files changed, 19 insertions(+) diff --git a/.config/emacs/config.el b/.config/emacs/config.el index 44b82a6..8e574c6 100644 --- a/.config/emacs/config.el +++ b/.config/emacs/config.el @@ -14,6 +14,13 @@ (setq backup-directory-alist '((".*" . "~/.local/share/Trash/files"))) +(use-package claude-code + :ensure (claude-code :host github :repo "stevemolitor/claude-code.el") + :bind ("C-c c" . claude-code-transient) + :config + ;; Optional: Start the Emacs server if not already running + (unless (server-running-p) (server-start))) + (use-package company :defer 2 :diminish diff --git a/.config/emacs/config.org b/.config/emacs/config.org index 8c231c4..a92036d 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -10,6 +10,7 @@ - [[#sourcing-the-scripts][Sourcing the scripts]] - [[#all-the-icons][ALL THE ICONS]] - [[#backup][BACKUP]] +- [[#claude-code][CLAUDE-CODE]] - [[#company][COMPANY]] - [[#dashboard][DASHBOARD]] - [[#diminish][DIMINISH]] @@ -98,6 +99,17 @@ By default, Emacs creates automatic backups of files in their original directori #+end_src +* CLAUDE-CODE +#+begin_src emacs-lisp +(use-package claude-code + :ensure (claude-code :host github :repo "stevemolitor/claude-code.el") + :bind ("C-c c" . claude-code-transient) + :config + ;; Optional: Start the Emacs server if not already running + (unless (server-running-p) (server-start))) + +#+end_src + * COMPANY [[https://company-mode.github.io/][Company]] is a text completion framework for Emacs. The name stands for "complete anything". Completion will start automatically after you type a few letters. Use M-n and M-p to select, to complete or to complete the common part.