https://github.com/cemkeylan/redo-mode
Simple Emacs major-mode for the redo build system
https://github.com/cemkeylan/redo-mode
emacs emacs-mode redo
Last synced: about 1 year ago
JSON representation
Simple Emacs major-mode for the redo build system
- Host: GitHub
- URL: https://github.com/cemkeylan/redo-mode
- Owner: cemkeylan
- License: gpl-3.0
- Created: 2020-12-20T15:27:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-20T15:27:49.000Z (over 5 years ago)
- Last Synced: 2024-01-08T04:21:12.553Z (over 2 years ago)
- Topics: emacs, emacs-mode, redo
- Language: Emacs Lisp
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
#+TITLE: redo-mode
#+AUTHOR: Cem Keylan
Simple Emacs major-mode package for the redo build system.
* Installation
Copy =redo-mode.el= to your load path and use require to load it.
#+begin_src elisp
(require 'redo-mode)
#+end_src
You can also use =straight.el= / =use-package= in order to use this mode
/hassle-free/ on your system.
#+begin_src elisp
(use-package redo-mode
:straight (:host github :repo "cemkeylan/redo-mode")
:mode "\\.do\\'")
#+end_src