From a7c44d60af86479436f19d151fd93f4658892d76 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 17 Jul 2018 15:12:36 -0700 Subject: [emacs] Simplify the configuration Reduce the number of configuration files. --- emacs.d/config/fcuny-python.el | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 emacs.d/config/fcuny-python.el (limited to 'emacs.d/config/fcuny-python.el') 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) -- cgit 1.4.1