Compare commits

...

3 Commits

Author SHA1 Message Date
4199b6571f emacs : org-modern foreground color to gray 2024-09-05 14:25:16 +09:00
a5096ef3a1 emacs : org-modern keywords color settings 2024-09-05 14:21:15 +09:00
5415fbc30f emacs : chatgpt -> gptel 2024-09-05 14:21:01 +09:00
2 changed files with 14 additions and 9 deletions

View File

@ -1,16 +1,12 @@
;; init-chatgpt.el -*- lexical-binding: t -*-
(use-package chatgpt-shell
(use-package gptel
:straight t
:ensure t
:defer t
:config
(setq chatgpt-shell-openai-key custom-chatgpt-my-key))
(use-package dall-e-shell
:straight t
:ensure t
:defer t
:config
(setq dall-e-shell-openai-key custom-chatgpt-my-key))
(setq gptel-model "gpt-4o-mini")
(setq gptel-api-key custom-chatgpt-my-key))
(provide 'init-chatgpt)
;;; init-chatgpt.el ends here

View File

@ -246,7 +246,16 @@ prepended to the element after the #+HEADER: tag."
:hook ((org-mode . org-modern-mode)
(org-agenda-finalize . org-modern-agenda))
: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
:straight t