summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--emacs.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs.org b/emacs.org
index 66239e0..b79d407 100644
--- 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)