Skip to content

Commit db7054b

Browse files
committed
Use setopt consistently
1 parent 8ef3c7a commit db7054b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ interactively change this behavior.
179179
Set the var `clojure-ts-indent-style` to change it.
180180

181181
``` emacs-lisp
182-
(setq clojure-ts-indent-style 'fixed)
182+
(setopt clojure-ts-indent-style 'fixed)
183183
```
184184

185185
> [!TIP]
@@ -286,7 +286,7 @@ Forms that can be aligned vertically are configured via the following variables:
286286
To highlight entire rich `comment` expression with the comment font face, set
287287

288288
``` emacs-lisp
289-
(setq clojure-ts-comment-macro-font-lock-body t)
289+
(setopt clojure-ts-comment-macro-font-lock-body t)
290290
```
291291

292292
By default this is `nil`, so that anything within a `comment` expression is
@@ -332,7 +332,7 @@ Example of regex syntax highlighting:
332332
To make forms inside of `(comment ...)` forms appear as top-level forms for evaluation and navigation, set
333333

334334
``` emacs-lisp
335-
(setq clojure-ts-toplevel-inside-comment-form t)
335+
(setopt clojure-ts-toplevel-inside-comment-form t)
336336
```
337337

338338
### Fill paragraph

0 commit comments

Comments
 (0)