diff options
author | Crazazy | 2022-02-03 18:52:04 +0100 |
---|---|---|
committer | Crazazy | 2022-02-10 16:13:34 +0100 |
commit | 97a505c09f6b5ca9d993fd2abb4799ba0a99a0a8 (patch) | |
tree | 86d4228a4c636840fe830030f3d945b52c924ba5 | |
parent | ed86dbf66e5755267c985b0ebb544c0f3b610e3c (diff) |
don't create a emacs.el file
-rw-r--r-- | emacs.org | 4 |
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) |