Use an alias to open Emacs inside the console. We will use the Emacs-Client to connect to a Emacs server for faster startup.
References:
[shell] alias em=’emacsclient ‑nw’ [/shell]Remove not needed Docker containers.
For example:
docker_rm_search Exited[shell] function docker_rm_search() { p=“$1” docker rm ‑f $(docker ps ‑a | grep “$p” | awk “{print \$1}”) } [/shell]
Use notify-send to inform the user when maven is done.
References:
Enable automatic spelling for Emacs.
Reference:
[plain] ;; enable spellcheck per default for all files ;; see https://stackoverflow.com/questions/15891808/how-to-enable-automatic-spell-check-by-default (add-hook ‘find-file-hooks ‘turn-on-flyspell) [/plain]