summary refs log tree commit diff
path: root/emacs.d/config/fcuny-python.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/config/fcuny-python.el')
-rw-r--r--emacs.d/config/fcuny-python.el23
1 files changed, 0 insertions, 23 deletions
diff --git a/emacs.d/config/fcuny-python.el b/emacs.d/config/fcuny-python.el
deleted file mode 100644
index fd96157..0000000
--- a/emacs.d/config/fcuny-python.el
+++ /dev/null
@@ -1,23 +0,0 @@
-(eval-when-compile
-  (require 'use-package))
-
-(use-package python
-  :mode (("\\.py$" . python-mode))
-  :ensure t
-  :commands python-mode
-  :custom (python-indent-offset 2))
-
-(use-package anaconda-mode
-  :ensure t
-  :after python
-  :hook ((python-mode . anaconda-mode)
-         (python-mode . eldoc-mode))
-  :custom (anaconda-mode-eldoc-as-single-line t))
-
-(use-package company-anaconda
-  :ensure t
-  :after anaconda-mode
-  :init
-  (add-to-list 'company-backends 'company-anaconda))
-
-(provide 'fcuny-python)