Emacs config
Find a file
Dimitri Lozeve f4693a048a Automatic tree-sitter setup
Install grammars automatically and use tree-sitter modes by default
2023-06-23 14:20:24 +02:00
.gitignore Add tree-sitter to compilation instructions 2023-05-26 13:54:11 +02:00
early-init.el Remove package.el and setup straight.el 2021-06-03 16:05:17 +02:00
init.el Automatic tree-sitter setup 2023-06-23 14:20:24 +02:00
README.org Add tree-sitter to compilation instructions 2023-05-26 13:54:11 +02:00

Emacs config

Compiling Emacs from source

./autogen.sh
./configure --prefix=$HOME/.local \
	    --with-native-compilation=aot \
	    --with-modules --with-tree-sitter \
	    --with-pgtk --with-json --with-rsvg \
	    CFLAGS='-O3 -march=native -mtune=native'
make -j
make check
src/emacs -Q
make install