Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/karimaziev/km-elisp
- Owner: KarimAziev
- License: gpl-3.0
- Created: 2024-06-25T07:16:14.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-29T09:09:12.000Z (4 months ago)
- Last Synced: 2024-07-29T12:20:56.601Z (4 months ago)
- Language: Emacs Lisp
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
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_srcAdd 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