Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/karimaziev/km-elisp

Miscellaneous Elisp utils.
https://github.com/karimaziev/km-elisp

Last synced: 4 days ago
JSON representation

Miscellaneous Elisp utils.

Awesome Lists containing this project

README

        

#+OPTIONS: ^:nil tags:nil num:nil

* About

Miscellaneous Elisp utils.

* Table of Contents :TOC_2_gh:QUOTE:
#+BEGIN_QUOTE
- [[#about][About]]
- [[#requirements][Requirements]]
- [[#installation][Installation]]
- [[#with-use-package-and-straightel][With use-package and straight.el]]
- [[#manual-installation][Manual installation]]
#+END_QUOTE

* Requirements

| Name | Version |
|-------+---------|
| Emacs | 26.1 |

* Installation

** With use-package and straight.el
#+begin_src elisp :eval no
(use-package km-elisp
:straight (km-elisp
:repo "KarimAziev/km-elisp"
:type git
:host github))
#+end_src

** Manual installation

Download the source code and put it wherever you like, e.g. into =~/.emacs.d/km-elisp/=

#+begin_src shell :eval no
git clone https://github.com/KarimAziev/km-elisp.git ~/.emacs.d/km-elisp/
#+end_src

Add the downloaded directory to the load path:

#+begin_src elisp :eval no
(add-to-list 'load-path "~/.emacs.d/km-elisp/")
(require 'km-elisp)
#+end_src