summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-python.el
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2020-03-19 17:33:25 -0700
committerFranck Cuny <franck.cuny@gmail.com>2020-03-19 17:33:25 -0700
commitfdf9eec068e49397faf718517ff79428ffda09fa (patch)
tree81cdfcfaf1c47e27d5fc821efda51bbb75affb31 /emacs.d/custom/fcuny-python.el
parentemacs: move/delete some functions (diff)
downloademacs.d-fdf9eec068e49397faf718517ff79428ffda09fa.tar.gz
emacs: merge configuration related to prog-mode
For the various prog-mode, merge the configuration into a single file so
that it's easier to maintain (I guess ?)
Diffstat (limited to '')
-rw-r--r--emacs.d/custom/fcuny-python.el9
1 files changed, 0 insertions, 9 deletions
diff --git a/emacs.d/custom/fcuny-python.el b/emacs.d/custom/fcuny-python.el
deleted file mode 100644
index b0eff5f..0000000
--- a/emacs.d/custom/fcuny-python.el
+++ /dev/null
@@ -1,9 +0,0 @@
-(use-package python
-  :after (flycheck flyspell)
-  :mode (("\\.py$"     . python-mode)
-         ("\\.aurora$" . python-mode))
-  :commands python-mode
-  :hook ((python-mode . eldoc-mode))
-  :custom (python-indent-offset 2))
-
-(provide 'fcuny-python)