Initial poop

This commit is contained in:
Lauren Toivanen 2025-01-24 05:13:48 +02:00
commit f08eb93486
Signed by: jt
GPG key ID: 9151B109B73ECAD5
3280 changed files with 3759 additions and 0 deletions

View file

@ -0,0 +1,21 @@
# Custom default editor
If you'd like to for example open #emacs with `-nw` you need to do some trickery.
Create a script to open the editor and set it executable
``` sh title="/usr/local/bin/emacs-nw"
#!/bin/sh
emacs -nw "$@"
```
Add the script to list of known editors (if using update-alternatives system) and set it default:
``` console
$ sudo update-alternatives --install /usr/bin/editor editor /usr/local/bin/emacs-nw 2;
$ sudo update-alternatives --config editor;
```
You may also set variables in `~/.bashrc` like so:
``` sh title="~/.bashrc"
export VISUAL="emacs"
export EDITOR="emacs -nw"
```