diff options
| author | Luke Hoersten <[email protected]> | 2025-10-02 11:45:27 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2025-10-02 11:45:27 -0500 |
| commit | 31e53ed00b066234d31cbc98a337fc263009db0a (patch) | |
| tree | 48c15c9cc4b36f92ebcf92a36e01067178210a1e /README.md | |
| parent | 880bc08da7a003f3a483b9432e5927f018a06f7d (diff) | |
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -32,6 +32,7 @@ Personal Emacs configuration focused on simplicity and modern tooling while resp ### Development - **company** - Auto-completion - **flycheck** - Syntax checking +- **jinx** - Fast spell-checking (requires enchant) - **treesit-auto** - Tree-sitter modes with automatic grammar installation - **magit** - Git interface - **forge** - GitHub/GitLab integration for magit @@ -81,6 +82,20 @@ Personal Emacs configuration focused on simplicity and modern tooling while resp ## Installation +### Prerequisites + +**macOS:** +```bash +brew install enchant pkg-config +``` + +**Ubuntu/Debian:** +```bash +sudo apt install libenchant-2-dev pkg-config +``` + +### Setup + 1. Clone this repository: ```bash git clone [email protected]:lukehoersten/emacs.d.git ~/.emacs.d @@ -88,7 +103,9 @@ Personal Emacs configuration focused on simplicity and modern tooling while resp 2. Launch Emacs - packages will auto-install on first run -3. For tree-sitter modes, grammars install automatically when first opening a file +3. Jinx spell-checker will compile its native module on first launch (requires enchant) + +4. For tree-sitter modes, grammars install automatically when first opening a file ## Tree-sitter Support |
