From 9f187474ea27c781f93ed9835167067bc4545540 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Sun, 30 Jul 2023 11:07:39 +0200 Subject: Chip away at Custom file Move Python settings to use-package. Tweak a couple of knobs while in there. --- .emacs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to '.emacs') diff --git a/.emacs b/.emacs index f01f9be..6d7ba70 100644 --- a/.emacs +++ b/.emacs @@ -419,11 +419,6 @@ (add-hook 'c-mode-common-hook 'my/c-modes-hook) -(defun my/python-hook () - (setq-local forward-sexp-function nil)) - -(add-hook 'python-mode-hook 'my/python-hook) - (defun my/compilation-notify (buffer results) (let* ((title (buffer-name buffer)) (status (if (string-equal results "finished\n") "success" "failure")) @@ -836,6 +831,12 @@ (show-paren-mode t) (show-paren-predicate t)) +(use-package python + :custom + (python-fill-docstring-style 'pep-257-nn) + (python-forward-sexp-function nil) + (python-indent-def-block-scale 1)) + (use-package shell :config (setq shell-font-lock-keywords nil) -- cgit v1.2.3