Add code snippet for requiring gph mode - geomyidae - a small C-based gopherd (… | |
git clone git://git.codemadness.org/geomyidae | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit d13933d6a4d1370e7565ab94032dfe7bcf6ea39a | |
parent 9d62510690cc6eb31a3ebd766cdab07b9f0dd65b | |
Author: Roygbyte <[email protected]> | |
Date: Fri, 19 May 2023 07:29:27 -0300 | |
Add code snippet for requiring gph mode | |
Signed-off-by: Christoph Lohmann <[email protected]> | |
Diffstat: | |
M gph/README.md | 9 ++++++++- | |
1 file changed, 8 insertions(+), 1 deletion(-) | |
--- | |
diff --git a/gph/README.md b/gph/README.md | |
@@ -11,7 +11,14 @@ | |
## emacs | |
-Please read this on how emacs finds its major mode files: | |
+### Installation | |
+ | |
+Add the following to your Emacs configuration file. | |
+ | |
+ (add-to-list 'load-path (concat user-emacs-directory "path/to/dir/with… | |
+ (require 'gph-mode) | |
+ | |
+For additional verbosity visit: | |
https://www.gnu.org/software/emacs/manual/html_node/elisp/Auto-Major-M… | |