mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-22 02:50:24 +10:00
Minor edits
This commit is contained in:
@@ -14,6 +14,13 @@
|
|||||||
|
|
||||||
(setq backup-directory-alist '((".*" . "~/.local/share/Trash/files")))
|
(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
|
(use-package company
|
||||||
:defer 2
|
:defer 2
|
||||||
:diminish
|
:diminish
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
- [[#sourcing-the-scripts][Sourcing the scripts]]
|
- [[#sourcing-the-scripts][Sourcing the scripts]]
|
||||||
- [[#all-the-icons][ALL THE ICONS]]
|
- [[#all-the-icons][ALL THE ICONS]]
|
||||||
- [[#backup][BACKUP]]
|
- [[#backup][BACKUP]]
|
||||||
|
- [[#claude-code][CLAUDE-CODE]]
|
||||||
- [[#company][COMPANY]]
|
- [[#company][COMPANY]]
|
||||||
- [[#dashboard][DASHBOARD]]
|
- [[#dashboard][DASHBOARD]]
|
||||||
- [[#diminish][DIMINISH]]
|
- [[#diminish][DIMINISH]]
|
||||||
@@ -98,6 +99,17 @@ By default, Emacs creates automatic backups of files in their original directori
|
|||||||
|
|
||||||
#+end_src
|
#+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
|
* 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.
|
[[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.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user