diff options
| author | Luke Hoersten <[email protected]> | 2026-04-29 07:05:17 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2026-04-29 07:05:17 -0500 |
| commit | dcf16e58db4d94ebdd426078998bab381c243efa (patch) | |
| tree | 1a99a1fd17d5c1ed53adb7e143fee0d4b39b0225 | |
| parent | 65a77d88bd9d63cb6d0b1914439b1ff7ddd46ec0 (diff) | |
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | init.el | 19 |
2 files changed, 7 insertions, 14 deletions
@@ -12,3 +12,5 @@ forge-database.sqlite claude-code-context.json /projects /.agent-shell/ +/agent/ +/tramp @@ -120,7 +120,6 @@ exec-path-from-shell ; sync shell PATH into Emacs jinx ; spell checker (libenchant) ghostel ; libghostty terminal emulator - vterm ; terminal emulator - needed for claude-code-ide )) (unless (package-installed-p package) (package-install package))) @@ -130,20 +129,11 @@ (require 'c-init) (require 'ansible-init) -;; ;; claude-code-context -;; (add-to-list 'load-path "~/Dev/code/git/elisp/claude-code-context") -;; (require 'claude-code-context) -;; (claude-code-context-mode 1) -;;; claude-code-ide -(use-package claude-code-ide - :vc (:url "https://github.com/manzaltu/claude-code-ide.el" :rev :newest) - :bind ("C-c C-'" . claude-code-ide-menu) - :custom - (claude-code-ide-vterm-anti-flicker t) ; batch rapid vterm updates to reduce flicker - (claude-code-ide-vterm-render-delay 0.005) ; 5ms collection window for batched updates - :config - (claude-code-ide-emacs-tools-setup)) +;;; claude-code-context +(add-to-list 'load-path "~/Dev/code/git/elisp/claude-code-context") +(require 'claude-code-context) +(claude-code-context-mode 1) ;;; text-mode @@ -237,6 +227,7 @@ ;;; magit (with-eval-after-load 'magit-todos (magit-todos-mode t)) ; show TODOs in magit status +(add-hook 'git-commit-mode-hook 'flyspell-mode) ;;; diff-hl (inline git diff in fringe) |
