From f10b5d0e994fe4167935047d99444b3bfa612474 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 16 Sep 2015 16:40:16 -0700 Subject: [emacs] split config in different files. Move the configuration for each language and major mode in it's own configuration file. Enable the theme "leuven" if run in windowed mode. --- emacs.d/inits/90_lang-python.el | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 emacs.d/inits/90_lang-python.el (limited to 'emacs.d/inits/90_lang-python.el') diff --git a/emacs.d/inits/90_lang-python.el b/emacs.d/inits/90_lang-python.el new file mode 100644 index 0000000..dd0e46e --- /dev/null +++ b/emacs.d/inits/90_lang-python.el @@ -0,0 +1,5 @@ +(use-package python + :mode ("\\.\\(py\\|aurora\\)$" . python-mode) + :config + (progn + (setq python-indent-offset 2))) -- cgit 1.4.1