Emacs configuration with batteries included.
Installation
curl -L https://tknk.io/Iq7z | sh -
- Directory based configuration structure.
- Evil-Mode leaders key based workflow.
- Evil nerd-commenter mappings.
- Lightweight startup and low memory footprint.
- Support snippets, completion and more ...
Even if the configuration comes with the essentials
- Use-package backend used.
$ tree -d ~/.emacs.d/lisp
~/.emacs.d/lisp
├── core
├── languages
├── libs
└── package <------ Here
└── disabled
Packges are loaded by providing file. You should provide the filename of your file.
;; -*- lexical-binding: t -*-
(use-package foobar ; Your package name
:ensure t) ; Make sure you have enable this
;; Your configurations go here ...
;; ...
(provide 'pkg-foobar)