iomonad / iomonad.el

emacs operating system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iomonad.el HitCount

Normalize Logo

Emacs configuration with batteries included.

Installation

curl -L  https://tknk.io/Iq7z | sh -

What does it do?

  • 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 ...

Implementing your packages

Even if the configuration comes with the essentials

  • Use-package backend used.

Find the folder

$ 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.

Ex: pkg-foobar.el

;; -*- lexical-binding: t -*-
(use-package foobar ; Your package name
  :ensure t) ; Make sure you have enable this

;; Your configurations go here ...
;; ...

(provide 'pkg-foobar)

Fake Busy

About

emacs operating system

License:Do What The F*ck You Want To Public License


Languages

Language:Emacs Lisp 98.2%Language:Roff 1.2%Language:Python 0.3%Language:C 0.1%Language:Shell 0.1%Language:HTML 0.1%