Emacs config
Find a file
2023-09-07 12:07:38 +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 Add Typescript and TSX tree-sitter grammars 2023-09-07 12:07:38 +02:00
README.org Update build instructions to use mailutils 2023-08-28 11:58:44 +02:00

Emacs config

Compiling Emacs from source

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