commit 97a505c09f6b5ca9d993fd2abb4799ba0a99a0a8
parent ed86dbf66e5755267c985b0ebb544c0f3b610e3c
Author: Crazazy <crazazy@tilde.cafe>
Date: Thu, 3 Feb 2022 18:52:04 +0100
don't create a emacs.el file
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/emacs.org b/emacs.org
@@ -255,7 +255,7 @@ Also, if you just stumbled accross this at random, there is an easy tangle butto
#+end_src
First we set an interpreter with nix, it comes with all the python autocompletion tools we need
- #+begin_src emacs-lisp :noweb-ref el-python-config
+ #+begin_src emacs-lisp :noweb-ref el-python-config :tangle no
(setq python-shell-interpreter
(nix-executable-find
(nix-env-from-packages "python" "(python3.withPackages (p: with p; [pygame virtualenvwrapper pip sqlite jedi flake8 yapf autopep8 black]))")
@@ -263,7 +263,7 @@ Also, if you just stumbled accross this at random, there is an easy tangle butto
#+end_src
Then we introduce elpy with so that it can use all the tools immidiately without downloading them
- #+begin_src emacs-lisp :noweb-ref el-python-config
+ #+begin_src emacs-lisp :noweb-ref el-python-config :tangle no
(use-package elpy
:config
(elpy-enable)