summaryrefslogtreecommitdiff
path: root/emacs/inits/20-programming.el
diff options
context:
space:
mode:
authortslilc <tslil@posteo.de>2025-06-27 20:07:04 +0100
committertslilc <tslil@posteo.de>2025-06-27 20:07:04 +0100
commit87622be5f2a5122ada9db6ff1a133a605c58b5d7 (patch)
treef6082760194bdecd4ba8d0d6d4b08f9bbc225847 /emacs/inits/20-programming.el
parent00964b044fe1f6784b3d82c6971cbda7f07657af (diff)
[emacs] switch to ruff-mode
Diffstat (limited to 'emacs/inits/20-programming.el')
-rw-r--r--emacs/inits/20-programming.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/emacs/inits/20-programming.el b/emacs/inits/20-programming.el
index b3b034b..20d6fc4 100644
--- a/emacs/inits/20-programming.el
+++ b/emacs/inits/20-programming.el
@@ -1,4 +1,4 @@
-;; Time-stamp: <2025-06-25 20h15 BST (anker)>
+;; Time-stamp: <2025-06-27 20h06 BST (8dae3a36)>
;; -----------------------------------------------------------------------------
;; General setup
@@ -197,10 +197,10 @@
;; -----------------------------------------------------------------------------
;; Python
-(use-package lazy-ruff
+(use-package ruff-format
:defer
:ensure
- :commands lazy-ruff-mode)
+ :commands ruff-format-on-save-mode)
(use-package highlight-indent-guides
:ensure
@@ -213,7 +213,7 @@
:hook (python-mode . (lambda ()
(require 'highlight-indent-guides)
(highlight-indent-guides-mode t)
- (lazy-ruff-mode)
+ (ruff-format-on-save-mode)
(eglot-ensure)
(visual-line-mode)))