@@ -51,23 +51,29 @@ Those will be addressed over the time, as more and more people use `clojure-ts-m
51
51
52
52
## Installation
53
53
54
- ### Emacs 29
55
-
56
- This package requires Emacs 29 built with tree-sitter support from the [ emacs-29 branch] ( https://git.savannah.gnu.org/cgit/emacs.git/log/?h=emacs-29 ) .
57
-
58
- If you decide to build Emacs from source there's some useful information on this in the Emacs repository:
59
-
60
- - [ Emacs tree-sitter starter-guide] ( https://git.savannah.gnu.org/cgit/emacs.git/tree/admin/notes/tree-sitter/starter-guide?h=emacs-29 )
61
- - [ Emacs install instructions] ( https://git.savannah.gnu.org/cgit/emacs.git/tree/INSTALL.REPO ) .
54
+ ### Requirements
62
55
56
+ For ` clojure-ts-mode ` to work, you need Emacs 29+ built with TreeSitter support.
63
57
To check if your Emacs supports tree sitter run the following (e.g. by using ` M-: ` ):
64
58
65
59
``` emacs-lisp
66
60
(treesit-available-p)
67
61
```
68
62
63
+ Additionally, you'll need to have Git and some C compiler (` cc ` ) installed and available
64
+ in your ` $PATH ` (or Emacs's ` exec-path ` ), for ` clojure-ts-mode ` to be able to install the required
65
+ TreeSitter grammars automatically.
66
+
69
67
### Install clojure-ts-mode
70
68
69
+ > [ !NOTE]
70
+ >
71
+ > That's the recommended way to install ` clojure-ts-mode ` .
72
+
73
+ If you have ` git ` and a C compiler (` cc ` ) available on your system's ` PATH ` ,
74
+ ` clojure-ts-mode ` will install the
75
+ grammars
76
+
71
77
clojure-ts-mode is available on [ MElPA] ( https://melpa.org/#/clojure-ts-mode ) and
72
78
[ NonGNU ELPA] ( https://elpa.nongnu.org/nongnu/clojure-ts-mode.html ) .
73
79
It can be installed with
@@ -102,6 +108,11 @@ Once installed, evaluate clojure-ts-mode.el and you should be ready to go.
102
108
103
109
### Install tree-sitter grammars
104
110
111
+ > [ !NOTE]
112
+ >
113
+ > ` clojure-ts-mode ` install the required grammars automatically, so for most
114
+ > people no manual actions will be required.
115
+
105
116
` clojure-ts-mode ` makes use of two TreeSitter grammars to work properly:
106
117
107
118
- The Clojure grammar, mentioned earlier
0 commit comments