Minor edits

This commit is contained in:
Derek Taylor
2026-04-21 10:01:33 -05:00
parent 8a6fcac959
commit b2a4a744c0
2 changed files with 19 additions and 0 deletions

View File

@@ -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

View File

@@ -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, <return> to complete or <tab> to complete the common part.