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: https://www.gnu.org/software/emacs/manual/html_node/emacs/Invoking— emacsclient.html#Invoking— emacsclient [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}”)…