src.nth.io/

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-05-25 12:08:10 -0500
committerLuke Hoersten <[email protected]>2026-05-25 12:08:10 -0500
commitfc5965c1bf30c4ed9ebf216e752d27413aa61104 (patch)
tree476bc100a3bbe4fdacd0d112055254ddb1017dbe
parentfb82f280b237aad7a9659f4d4656782d2010f6f2 (diff)
Install claude-code-context from MELPA instead of local path
-rw-r--r--README.md2
-rw-r--r--init.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0fefc35..8b5c1de 100644
--- a/README.md
+++ b/README.md
@@ -75,7 +75,7 @@ Personal Emacs configuration focused on simplicity and modern tooling while resp
- **ibuffer-project** - Group buffers by project
- **exec-path-from-shell** - Import shell environment variables
- **ghostel** - libghostty terminal emulator
-- **claude-code-context** - Send Emacs buffer context to Claude Code (loaded from `~/Dev/code/git/elisp/claude-code-context`)
+- **claude-code-context** - Send Emacs buffer context to Claude Code
## Key Bindings
diff --git a/init.el b/init.el
index 3a79a9f..17bd8c8 100644
--- a/init.el
+++ b/init.el
@@ -118,6 +118,7 @@
jinx ; spell checker (libenchant)
ghostel ; libghostty terminal emulator
vterm ; terminal emulator - needed for claude-code-ide
+ claude-code-context ; send Emacs buffer context to Claude Code
))
(unless (package-installed-p package)
(package-install package)))
@@ -329,7 +330,6 @@
;;; claude-code-context
-(add-to-list 'load-path "~/Dev/code/git/elisp/claude-code-context")
(require 'claude-code-context)
(claude-code-context-mode 1)