Emacs config
Find a file
Dimitri Lozeve 4e12e57fa2 Install avy and ace-window
And make the M-o shortcut work in eat (it was captured in
semi-char-mode).

Note: When changing the eat-semi-char-non-bound-keys variable, you
need to call eat-update-semi-char-mode-map afterward, and eat-reload
to make sure that the changes are taken into account.
2024-06-07 17:38:26 +02:00
eshell Save eshell aliases 2023-10-08 22:09:34 +02:00
.gitignore Ignore org-persist directory 2024-03-13 11:41:12 +01:00
early-init.el Remove package.el and setup straight.el 2021-06-03 16:05:17 +02:00
init.el Install avy and ace-window 2024-06-07 17:38:26 +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