mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-17 09:13:32 +09:00
Compare commits
3 Commits
84fce00146
...
4199b6571f
| Author | SHA1 | Date | |
|---|---|---|---|
| 4199b6571f | |||
| a5096ef3a1 | |||
| 5415fbc30f |
@ -1,16 +1,12 @@
|
|||||||
;; init-chatgpt.el -*- lexical-binding: t -*-
|
;; init-chatgpt.el -*- lexical-binding: t -*-
|
||||||
(use-package chatgpt-shell
|
(use-package gptel
|
||||||
:straight t
|
:straight t
|
||||||
:ensure t
|
:ensure t
|
||||||
:defer t
|
:defer t
|
||||||
:config
|
:config
|
||||||
(setq chatgpt-shell-openai-key custom-chatgpt-my-key))
|
(setq gptel-model "gpt-4o-mini")
|
||||||
(use-package dall-e-shell
|
(setq gptel-api-key custom-chatgpt-my-key))
|
||||||
:straight t
|
|
||||||
:ensure t
|
|
||||||
:defer t
|
|
||||||
:config
|
|
||||||
(setq dall-e-shell-openai-key custom-chatgpt-my-key))
|
|
||||||
|
|
||||||
(provide 'init-chatgpt)
|
(provide 'init-chatgpt)
|
||||||
;;; init-chatgpt.el ends here
|
;;; init-chatgpt.el ends here
|
||||||
|
|||||||
@ -246,7 +246,16 @@ prepended to the element after the #+HEADER: tag."
|
|||||||
:hook ((org-mode . org-modern-mode)
|
:hook ((org-mode . org-modern-mode)
|
||||||
(org-agenda-finalize . org-modern-agenda))
|
(org-agenda-finalize . org-modern-agenda))
|
||||||
:config
|
:config
|
||||||
(setq org-modern-table nil))
|
(setq org-modern-table nil)
|
||||||
|
(setq org-modern-todo-faces
|
||||||
|
(quote (("TODO" :background "#E6DA73" :foreground "#666666")
|
||||||
|
("PROJ" :background "#50B7D9" :foreground "#666666")
|
||||||
|
("STRT" :background "#A1DC2D" :foreground "#666666")
|
||||||
|
("WAIT" :background "#9E54FD" :foreground "#666666")
|
||||||
|
("HOLD" :background "#9E54FD" :foreground "#666666")
|
||||||
|
("IDEA" :background "#FF7F00" :foreground "#666666")
|
||||||
|
("DONE" :background "#C7C7C7" :foreground "#666666")
|
||||||
|
("KILL" :background "#C7C7C7" :foreground "#666666")))))
|
||||||
|
|
||||||
(use-package valign
|
(use-package valign
|
||||||
:straight t
|
:straight t
|
||||||
|
|||||||
Reference in New Issue
Block a user