This Emacs "distro" is based on my personal Emacs configuration (on GNU Emacs 26.3). It's unopinionated and was created for general use in mind. The package settings are grouped in a logical manner, and I've documented as detailed as possible what each code snippet does in my config.org
file.
You can find my opinionated personal configuration here.
This Emacs config starts up super fast with an average init time of 0.7 second.
Back up your ~/.emacs.d/
first (if you have one):
mv ~/.emacs.d/ ~/.emacs.d.bak/
Git clone my configuration to your new ~/.emacs.d/
:
git clone https://github.com/ianpan870102/yay-evil-emacs ~/.emacs.d/
I will constantly push new commits as soon as I discover new things suitable for this "distro"
The init.el
requires config.el
, which is produced by org-babel and config.org
. This allows me to put most of my configuration in an Org file with literate programming style (good for documenting code usage!).
- use-package
- evil
- evil-commentary
- evil-magit
- magit
- company (auto-completion)
- ido-vertical-mode
- ido-completing-read+ (ido-ubiquitous)
- yasnippets & yasnippet-snippets
- dashboard (welcome screen)
- org-bullets
- flycheck
- highlight-operators
- highlight-numbers
- highlight-escape-sequences
- Spacemacs Dark & Light: https://github.com/nashamri/spacemacs-theme
- Gruvbox Dark: https://github.com/Greduan/emacs-theme-gruvbox
- Nord: https://github.com/arcticicestudio/nord-emacs
- Monochrome: https://github.com/fxn/monochrome-theme.el
- Zenburn: https://github.com/bbatsov/zenburn-emacs
If you prefer a theme pack with some of the most popular themes, I recommend the emacs-doom-themes package
- Doom-themes package: https://github.com/hlissner/emacs-doom-themes
The default installation of my Emacs configuration ships with the Wilmersdorf theme I made myself. It is inspired by Monochrome, Spacemacs Dark, Ariake Dark, and Raiju. You can find more information on the theme here: https://github.com/ianpan870102/Emacs-Wilmersdorf-Theme
- Source Code Pro (playful and modern-looking, easy on the eyes)
- Droid Sans Mono (slick and elegant)
- Menlo / DejaVu family (classic, default on lots of systems)
- Input Mono (customizable, easy on the eyes)
Sure! Simply delete the sections regarding Vi bindings in config.org
.
You should be able to install packages the normal way (M-x list-packages RET
and i x
on the desired package row). If you plan to sync your config files across machines, add the configuration in config.org
with your preferred syntax (use-package is recommended). Yay-Evil sets all the packages :ensure
to true by default, so you don't need to add :ensure t
.
For this you need two steps:
- First, type
M-x list-packages RET
in Emacs bindings (or:list-packages RET
in Evil Normal state) and delete the unwanted package by placing your cursor on the row and pressd
followed by anx
. - Next, in the
config.org
file, remove (or comment out) the relevant configuration code.