Last active
November 2, 2024 11:20
-
-
Save rahil627/e9d150adc8dcc36846f5f6d0a4465665 to your computer and use it in GitHub Desktop.
install doom emacs with gui for chromeos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
go to about chromeos | |
install linux environment | |
- installs debian with wayland connection to chromeos | |
- no need for xwayland, should just work | |
- NOTE: comes with vim | |
- NOTE: debian is garbage, no packages at all. maybe need to use testing or unstable ("sid")?? | |
need emacs v29 for the gui to work as it has native wayland support | |
download or build emacs v29: | |
download a snapshot of emacs | |
- https://emacs.secretsauce.net/ | |
- i had trouble getting the package to work, seemed to require different versions of several libs | |
build emacs | |
- https://harryrschwartz.com/2022/12/08/how-i-build-emacs-from-source-on-debian | |
- ```sudo apt install \ | |
build-essential \ | |
libgtk-3-dev \ | |
libgnutls28-dev \ | |
libtiff5-dev \ | |
libgif-dev \ | |
libjpeg-dev \ | |
libpng-dev \ | |
libxpm-dev \ | |
libncurses-dev \ | |
texinfo``` | |
- NOTE: `sudo apt build-deps emacs` didn't work for me | |
-`sudo apt install libgccjit0 libgccjit-12-dev` | |
- for native compilation | |
- TODO: compare AOT to JIT/byte-compiled | |
- note: might have to change version number, check `apt search libgccjit` | |
- libgccjit0 was not enough, need dev too.. | |
- https://gist.github.com/zoliky/0445b20676bfa85450d7df006066ceb7 | |
- `sudo apt-get install build-essential` | |
- includes gcc | |
- maybe inlcluded libgccjit.. | |
- `sudo apt install libtree-sitter-dev` | |
- `wget http://mirrors.nav.ro/gnu/emacs/emacs-29.4.tar.xz` | |
- `tar xvf emacs-29.4.tar.xz` | |
- ./configure --prefix="$HOME/.local/emacs/" --without-compress-install --with-native-compilation --with-tree-sitter --without-x --with-json | |
- NOTE: not sure if it's necessary to install locally... | |
- the gist said to add `--with-pgtk` for wayland, but then, upon starting up doom, doom said i was using x-windows :/ | |
- strangely, during install, emacs said to add ``--without-x`... | |
- sudo make install | |
install doom | |
- https://github.com/doomemacs/doomemacs/blob/master/docs/getting_started.org | |
- follow the ubuntu instructions, as it also uses `apt` | |
- remember to run `doom install` | |
in case installed locally, should add to path, but for the moment, i just replaced the binary shortcut/symlink directly... not good. but ah well... there was an emacs installed that didn't get uninstalled even with `sudo apt remove emacs`.. i removed it | |
cd /usr/bin | |
- or is it ~/bin? shit. | |
`ln -s ~/.local/emacs/bin/emacs` | |
`sudo ~/emacs.d/bin/doom run` | |
- add to path or /usr/bin/ | |
- cd /usr/bin | |
- sudo ln -s ~/.emacs.d/bin/doom doom | |
- or perhaps a chromeos shortcut | |
- add doom.desktop to `~/.local/share/applications` | |
chrome shortcut: | |
- (jesus christ terminals are terrible. couldn't figure out how to copy from vim for the life of me..!) | |
[Desktop Entry] | |
Name=doom emacs | |
Comment=DOOM | |
Exec=sudo /home/ra/.emacs.d/bin/doom run | |
Terminal=false | |
Type=Application | |
~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment