Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aclonegeek/.emacs.d
Mirror of https://git.sr.ht/~randy/.emacs.d
https://github.com/aclonegeek/.emacs.d
emacs
Last synced: 29 days ago
JSON representation
Mirror of https://git.sr.ht/~randy/.emacs.d
- Host: GitHub
- URL: https://github.com/aclonegeek/.emacs.d
- Owner: aclonegeek
- License: mit
- Created: 2017-04-26T03:36:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-06T03:26:37.000Z (about 2 months ago)
- Last Synced: 2024-11-06T04:26:17.675Z (about 2 months ago)
- Topics: emacs
- Language: Emacs Lisp
- Homepage: https://git.sr.ht/~randy/.emacs.d
- Size: 1.94 MB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# .emacs.d
Emacs master built from source.
## Installation
``` shell
./autogen.sh./configure
--enable-link-time-optimization
--without-all
--with-cairo
--with-gnutls
--with-harfbuzz
--with-modules
--with-native-compilation=aot
--with-pgtk
--with-small-ja-dic
--with-tree-sitter
--with-threads
--with-toolkit-scroll-bars
--with-xml2
--with-zlib
CFLAGS="-O2 -pipe -mtune=native -march=native -fomit-frame-pointer"make -j
sudo make install
```If debugging:
```
CFLAGS="-Og -ggdb3 -pipe -mtune=native -march=native"
```