summary refs log tree commit diff
path: root/emacs.org
diff options
context:
space:
mode:
authorCrazazy2022-02-03 18:52:04 +0100
committerCrazazy2022-02-10 16:13:34 +0100
commit97a505c09f6b5ca9d993fd2abb4799ba0a99a0a8 (patch)
tree86d4228a4c636840fe830030f3d945b52c924ba5 /emacs.org
parented86dbf66e5755267c985b0ebb544c0f3b610e3c (diff)
don't create a emacs.el file
Diffstat (limited to 'emacs.org')
-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)