diff options
author | Franck Cuny <franck@fcuny.net> | 2024-09-28 11:19:57 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-09-28 11:19:57 -0700 |
commit | 32c68d5a6e31b10caa2e6c6a9583ec4d66c0daab (patch) | |
tree | 9d2933352de495f518ab3d1a962cb22b34b5f037 | |
parent | remove rust configuration (diff) | |
download | emacs.d-32c68d5a6e31b10caa2e6c6a9583ec4d66c0daab.tar.gz |
cleanup some python stuff
-rw-r--r-- | config/init-programming.el | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/config/init-programming.el b/config/init-programming.el index e3ddee0..886725d 100644 --- a/config/init-programming.el +++ b/config/init-programming.el @@ -116,19 +116,7 @@ ;;; python related configuration (use-package python-mode - :hook ((python-mode . tree-sitter-hl-mode)) - :custom - ;; if set to an absolute path, pyvenv won't work - (python-shell-interpreter "python3")) - -(use-package blacken - :ensure t - :hook (python-mode . blacken-mode)) - -(use-package pyvenv - :ensure t - :config - (pyvenv-mode 1)) + :hook ((python-mode . tree-sitter-hl-mode))) (use-package ruby-mode) |