summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-05-02 18:20:14 +0300
committerThanos Apollo <[email protected]>2023-05-02 18:20:14 +0300
commitf6f19e0815337a143656e0d5c1c5899202921d69 (patch)
tree6268fbe840a12170d79126b140979d23a4ad82ba
parent6d0bd5a7bf7f73c35b387b02d9a6159fc9d2480e (diff)
emacs: Add chatgpt in package list
-rwxr-xr-xemacs.org11
1 files changed, 6 insertions, 5 deletions
diff --git a/emacs.org b/emacs.org
index eb3185a..6c33238 100755
--- a/emacs.org
+++ b/emacs.org
@@ -70,7 +70,8 @@ Request the following packages:
dashboard
org-auto-tangle
slime
- slime-company))
+ slime-company
+ chatgpt))
#+end_src
** Installation & activation
Set ~package-archives~, and install packages
@@ -650,7 +651,7 @@ Hook with ~dired-mode~
#+end_src
** Python
#+begin_src emacs-lisp
-(use-package python-mode
+ (use-package python-mode
:ensure t
:mode ".py"
:hook (python-mode . lsp-deferred)
@@ -659,9 +660,9 @@ Hook with ~dired-mode~
:config
(require 'dap-python))
-(use-package pyvenv
- :config
- (pyvenv-mode 1))
+ (use-package pyvenv
+ :config
+ (pyvenv-mode 1))
#+end_src
** JSON
#+begin_src emacs-lisp