summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@twitter.com>2019-09-19 17:19:23 -0700
committerFranck Cuny <fcuny@twitter.com>2019-09-19 17:19:23 -0700
commit8ab5087d67c053fecda2c3802466661c2f01d4d9 (patch)
treefa8457f86051330fc3d9fb72bad226b774f3a57c /emacs
parent[emacs] drop dabbrev from company's backend (diff)
downloademacs.d-8ab5087d67c053fecda2c3802466661c2f01d4d9.tar.gz
[emacs] aurora files -> python mode
Diffstat (limited to '')
-rw-r--r--emacs.d/custom/fcuny-python.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-python.el b/emacs.d/custom/fcuny-python.el
index b1b5331..b0eff5f 100644
--- a/emacs.d/custom/fcuny-python.el
+++ b/emacs.d/custom/fcuny-python.el
@@ -1,6 +1,7 @@
 (use-package python
   :after (flycheck flyspell)
-  :mode (("\\.py$"   . python-mode))
+  :mode (("\\.py$"     . python-mode)
+         ("\\.aurora$" . python-mode))
   :commands python-mode
   :hook ((python-mode . eldoc-mode))
   :custom (python-indent-offset 2))