Shell layer
Table of ContentsClose
- 1. Description
- 2. Install
- 3. Configuration
- 3.1. Default shell
- 3.2. Default shell position, width, and height
- 3.3. External terminal emulator
- 3.4. Set shell for term, ansi-term, eat and vterm
- 3.5. Set shell for multi-term
- 3.6. Width of the shell popup buffers
- 3.7. Enable em-smart in Eshell
- 3.8. Protect your Eshell prompt
- 3.9. Fish shell and ansi-term
- 3.10. Close window with terminal
- 3.11. vterm package support
- 4. Eshell
- 5. Key bindings
1. Description
This layer configures the various shells available in Emacs.
1.1. Features:
- Shell integration
- Running external terminal emulator in current/project directory
2. Install
To use this configuration layer, add it to your ~/.spacemacs. You will need to
add shell to the existing dotspacemacs-configuration-layers list in this
file.
2.1. Install vterm
vterm is the latest addition to Emacs' set of terminal emulators and the only
one to be implemented in C, leveraging libvterm. It is the only one in Emacs
at the moment to be as fast as a standalone terminal with full support for
ncurses, vim, htop and the likes.
On its first run, vterm will automatically compile its dynamic library, for
which dependencies are needed. For more details, head to the official docs.
2.1.1. Check that your Emacs supports dynamic modules
You can check if your Emacs supports loading dynamic libraries by checking if
the system-configuration-features variable contains the string MODULES. If
not, you need to get a version of Emacs that supports it or compile it from
source supplying the ./configure --with-module option at configure time.
2.1.3. Install libtool
If the libtool command does not exist in your system (usually in
/usr/bin/libtool), you need to install it:
2.1.4. Install libvterm (Optional)
- macOS
brew install libvterm
- Linux
This library can be found in the official repositories of most distributions (e.g., Arch, Debian, Fedora, Gentoo, openSUSE, Ubuntu). If not available, it will be downloaded during the compilation process. Some distributions (e.g. Ubuntu 18.04) have versions of libvterm that are too old. If you find compilation errors related to VTERMCOLOR, you should not use your system libvterm.
- Windows
Not supported at the moment, but possibly coming up.
3. Configuration
3.1. Default shell
Emacs supports five types of shells/terminals:
- the Emacs shell (eshell)
- the inferior shell
- the terminal emulator
- the ANSI terminal emulator
- the vterm terminal emulator based on the C library libvterm
You can find a quick introductions to them here.
To define the default shell you can set the layer variable shell-default-shell
to the following variables:
ansi-term(default on Linux/macOS)eshell(default on Windows)shelltermvtermmulti-termmulti-vterm
(setq-default dotspacemacs-configuration-layers '((shell :variables shell-default-shell 'eshell)))
The default shell is quickly accessible via a the default shortcut key ~SPC '~.
3.2. Default shell position, width, and height
It is possible to choose where the shell should pop up by setting the variable
shell-default-position to either top, bottom, left, right, or full.
Default value is bottom. It is also possible to set the default height in
percents with the variable shell-default-height. Default value is 30. You
can also set a default width in percents with the variable
shell-default-width, which has a default value of 30 and will take effect if
your shell is positioned on the left or the right.
(setq-default dotspacemacs-configuration-layers '((shell :variables shell-default-position 'bottom shell-default-height 30))) (setq-default dotspacemacs-configuration-layers '((shell :variables shell-default-position 'right shell-default-width 40)))
3.3. External terminal emulator
This layer supports opening an external terminal emulator using terminal-here.
By default terminal-here finds an appropriate default shell for you.
If this does not work please check the package documentation how to
change it.
3.4. Set shell for term, ansi-term, eat and vterm
The default shell can be set by setting the variable shell-default-term-shell.
Default value is /bin/bash.
(setq-default dotspacemacs-configuration-layers '((shell :variables shell-default-term-shell "/bin/bash")))
3.5. Set shell for multi-term
The default shell can be set by setting the variable multi-term-program.
Default value is /bin/bash.
(setq-default dotspacemacs-configuration-layers '((shell :variables multi-term-program "/bin/bash")))
3.6. Width of the shell popup buffers
By default the popup buffer spans the full width of the current frame, if
you prefer to spans only the width of the current window then set the
layer variable shell-default-full-span to nil.
(setq-default dotspacemacs-configuration-layers '((shell :variables shell-default-full-span nil)))
3.7. Enable em-smart in Eshell
From the em-smart documentation:
The best way to get a sense of what this code is trying to do is by using it. Basically, the philosophy represents a blend between the ease of use of modern day shells, and the review-before-you-proceed mentality of Plan 9's 9term.
In a nutshell, when em-smart is enabled point won't jump at the end of the
buffer when a command is executed, it will stay at the same command prompt used
to execute the command. This allows to quickly edit the last command in the case
of a mistake. If there is no mistake and you directly type a new command then
the prompt will jump to the next prompt at the end of the buffer.
To enable em-smart put the following layer variable to non-nil:
(setq-default dotspacemacs-configuration-layers '((shell :variables shell-enable-smart-eshell t)))
3.8. Protect your Eshell prompt
Comint mode (Shell mode) has good support for Evil mode as it inhibits movement
commands over the prompt. This has the added benefit that Evil mode functions
work sensibly. E.g. you can press cc in normal state i.e.
evil-change-whole-line to kill the current input and start typing a new
command. In Eshell you also kill the prompt, which is often unintended.
By default this layer also protects the eshell prompt. If you want to
disable this protection you can set the variable shell-protect-eshell-prompt
to nil.
(setq-default dotspacemacs-configuration-layers '((shell :variables shell-protect-eshell-prompt nil)))
3.9. Fish shell and ansi-term
Making fish shell to work with ansi-term may be a challenge, here are
some pointers to save you time to setup your environment correctly.
First be sure ~/.terminfo is setup correctly by running:
tic -o ~/.terminfo $TERMINFO/e/eterm-color.ti
You can locate the eterm-colors.ti file with:
locate eterm-color.ti
Then setup your fish configuration file (usually at ~/.config/fish/config.fish)
# emacs ansi-term support if test -n "$EMACS" set -x TERM eterm-color end # this function may be required function fish_title true end
Finally you may need to toggle truncated lines for some prompts to work
correctly, in the function dotspacemacs/user-config of your dotfile add:
(add-hook 'term-mode-hook 'spacemacs/toggle-truncate-lines-on)
3.10. Close window with terminal
If you want its window to close when the terminal terminates, set the following layer variable to non-nil:
(setq-default dotspacemacs-configuration-layers '((shell :variables shell-close-window-with-terminal t)))
This is only applied to term and ansi-term modes.
3.11. vterm package support
By default, the vterm and multi-vterm packages will be installed and configured on platforms that support it. However, this requires performing additional compilation steps at load or install time, and may require other external dependencies that may not exist on your machine.
If you do not wish to use these packages, you can set
shell-enable-vterm-support to nil to avoid installing them in the
first place.
4. Eshell
Some advanced configuration is setup for eshell in this layer:
- some elisp functions aliases for quick access
sformagit-statusin the current directory (when thegitlayer is installed)dfordiredeto find a file via a new bufferzfor quickly jumping to a previously visited directory
- optional configuration for
em-smart(seeInstallsection for more info) - support for visual commands via
em-term - working directory sensitive prompt via eshell-prompt-extras
- advanced help support via
esh-help(enableel-docsupport in eshell) - add support for auto-completion via
company(when theauto-completionlayer is installed) - pressing
iin normal state will automatically jump to the prompt - color support with package
xterm-coloron Emacs28 and before - color support with built-in
ansi-colorby default on Emacs29 and later
5. Key bindings
| Key binding | Description |
|---|---|
| ~SPC '~ | Toggle pop-shell with your default shell |
| ~SPC "~ | Open external terminal emulator in current directory |
SPC a t s e |
Toggle pop-shell with eshell |
SPC a t s i |
Toggle pop-shell with shell |
SPC a t s a |
Toggle pop-shell with eat |
SPC a t s m |
Toggle pop-shell with multi-term |
SPC a t s M |
Toggle pop-shell with multi-vterm |
SPC a t s t |
Toggle pop-shell with ansi-term |
SPC a t s T |
Toggle pop-shell with term |
SPC a t s v |
Toggle pop-shell with vterm |
| ~SPC p '~ | Toggle pop-shell with your default shell in project root |
| ~SPC p "~ | Open external terminal emulator in project root |
SPC p $ |
Open a new buffer with default shell in project root |
TAB |
In a shell buffer, browse completions |
SPC m H |
In shell or eshell, browse history |
C-j |
Next item in history |
C-k |
Previous item in history |
Note: You can open multiple shells using a numerical prefix argument, for instance pressing ~2 SPC '~ will a second default shell, the number of shell is indicated on the mode-line.
Note: Use the universal prefix argument ~SPC u SPC '~ to open the shell in the current buffer instead of a popup.
5.1. Multi-term
| Key binding | Description |
|---|---|
SPC m c |
create a new multi-term |
SPC m C |
switch multi-term char mode |
SPC m l |
switch multi-term to line mode |
SPC m n |
go to next multi-term |
SPC m N or SPC m p |
go to previous multi-term |
5.2. Eshell
| Key binding | Description |
|---|---|
SPC m H or M-l |
search shell command history |
5.3. vterm
| Key binding | Description |
|---|---|
M-r |
search shell command history* |
Note*: M-r will only be bound to search for the command history when the
variable spacemacs-vterm-history-file-location is set to the path to your
shell history file.
For example with bash
(shell :variables spacemacs-vterm-history-file-location "~/.bash_history")
5.4. Multi-vterm
| Key binding | Description |
|---|---|
SPC m c |
create a new multi-vterm |
SPC m n |
go to next multi-vterm |
SPC m N or SPC m p |
go to previous multi-vterm |
SPC m r |
rename vterm buffer |