@@ -144,10 +144,22 @@ setting `clojure-ts-jank-use-cpp-parser` to `nil`.
144
144
If you have ` git ` and a C compiler (` cc ` ) available on your system's ` PATH ` ,
145
145
` clojure-ts-mode ` will install the
146
146
grammars when you first open a Clojure file and ` clojure-ts-ensure-grammars ` is
147
- set to ` t ` (the default).
147
+ set to ` t ` (the default). macOS users can install the required tools like this:
148
+
149
+ ``` shell
150
+ xcode-select --install
151
+ ```
152
+
153
+ Similarly, Debian/Ubuntu users can do something like:
154
+
155
+ ``` shell
156
+ sudo apt install build-essential
157
+ ```
158
+
159
+ This installs GCC, G++, ` make ` , and other essential development tools.
148
160
149
161
If ` clojure-ts-mode ` fails to automatically install the grammar, you have the
150
- option to install it manually, Please, refer to the installation instructions of
162
+ option to install it manually. Please, refer to the installation instructions of
151
163
each required grammar and make sure you're install the versions expected (see
152
164
` clojure-ts-grammar-recipes ` for details).
153
165
@@ -249,7 +261,7 @@ Note that `clojure-ts-semantic-indent-rules` should be set using the
249
261
customization interface or ` setopt ` ; otherwise, it will not be applied
250
262
correctly.
251
263
252
- #### Project local indentation
264
+ #### Project-specific indentation
253
265
254
266
Custom indentation rules can be set for individual projects. To achieve this,
255
267
you need to create a ` .dir-locals.el ` file in the project root. The content
@@ -261,7 +273,7 @@ should look like:
261
273
```
262
274
263
275
In order to apply directory-local variables to existing buffers, they must be
264
- reverted.
276
+ " reverted" (reloaded) .
265
277
266
278
### Vertical alignment
267
279
0 commit comments