diff options
Diffstat (limited to 'emacs')
| -rw-r--r-- | emacs/inits/20-programming.el | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/emacs/inits/20-programming.el b/emacs/inits/20-programming.el index 20d6fc4..89dc13c 100644 --- a/emacs/inits/20-programming.el +++ b/emacs/inits/20-programming.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2025-06-27 20h06 BST (8dae3a36)> +;; Time-stamp: <2025-07-01 10h19 BST (anker)> ;; ----------------------------------------------------------------------------- ;; General setup @@ -197,10 +197,11 @@ ;; ----------------------------------------------------------------------------- ;; Python -(use-package ruff-format - :defer - :ensure - :commands ruff-format-on-save-mode) +(use-package lazy-ruff + :ensure t + :config + (lazy-ruff-mode-global-toggle t) + (setq lazy-ruff-check-command "ruff check --fix -s --select I")) (use-package highlight-indent-guides :ensure |
