I am moving away from maintaining my personal emacs dot files, trying out spacemacs. vterm
is missing from the stock spacemacs
config, this snippet needs to be added to init.el
(add-to-list 'load-path "~/git/emacs-libvterm")
(require 'vterm)
;; Make emacs window title show path of current file
(setq-default frame-title-format
'(:eval
(format "Happy Hacking! %s"
(buffer-name)
(cond
(buffer-file-truename
(concat "(" buffer-file-truename ")"))
(dired-directory
(concat "{" dired-directory "}"))
(t
"[no file]")))))
Shishir Biyyala’s emacs config, built on top of the awesome http://github.com/squiter/emacs-fast-start.
- cyberpunk (FTW!)
draculaspacemacs-dark
vterm
is the best shell for emacs
in my opinion
- https://github.com/akermu/emacs-libvterm
- https://www.reddit.com/r/emacs/comments/mczu3i/help_me_compiling_vterm_emacs_beta/
Borrow goodies from https://blog.sumtypeofway.com/posts/emacs-config.html!