Emacs personal configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
454B

  1. ;;; package --- Summary
  2. ;;; Commentary:
  3. ;;; Code:
  4. (setq auto-mode-alist
  5. (append '(("SConstruct\\'" . python-mode)
  6. ("SConscript\\'" . python-mode))
  7. auto-mode-alist))
  8. (require-package 'pip-requirements)
  9. ;; See: https://github.com/purcell/emacs.d/issues/724
  10. (setq python-shell-interpreter "python3")
  11. (setq-default python-indent 4)
  12. (setq-default python-indent-offset 4)
  13. (provide 'init-python-mode)
  14. ;;; init-python-mode.el ends here