578ed1ba98
Moving all of my Emacs-related files into their own directory at the root of this repository.
21 lines
532 B
EmacsLisp
21 lines
532 B
EmacsLisp
;;; wpc-python.el --- Python configuration -*- lexical-binding: t -*-
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
;;; Commentary:
|
|
;; My Python configuration settings
|
|
;;
|
|
;; Depends
|
|
;; - `apti yapf`
|
|
|
|
;;; Code:
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Configuration
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(use-package py-yapf
|
|
:config
|
|
(add-hook 'python-mode-hook #'py-yapf-enable-on-save))
|
|
|
|
(provide 'wpc-python)
|
|
;;; wpc-python.el ends here
|