yeet
This commit is contained in:
39
.config/emacs/modules/lang/erlang/README.org
Normal file
39
.config/emacs/modules/lang/erlang/README.org
Normal file
@@ -0,0 +1,39 @@
|
||||
#+TITLE: lang/erlang
|
||||
#+DATE: January 14, 2020
|
||||
#+SINCE: {replace with next tagged release version}
|
||||
#+STARTUP: inlineimages nofold
|
||||
|
||||
* Table of Contents :TOC_3:noexport:
|
||||
- [[#description][Description]]
|
||||
- [[#maintainers][Maintainers]]
|
||||
- [[#module-flags][Module Flags]]
|
||||
- [[#plugins][Plugins]]
|
||||
- [[#prerequisites][Prerequisites]]
|
||||
- [[#features][Features]]
|
||||
|
||||
* Description
|
||||
|
||||
This module provides support [[https://www.erlang.org/][Erlang programming language]]. Support for the
|
||||
[[https://github.com/erlang/sourcer][sourcer]] language server is optional.
|
||||
|
||||
** Maintainers
|
||||
This module has no dedicated maintainers.
|
||||
|
||||
** Module Flags
|
||||
+ ~+lsp~ Enable LSP Support. Requires [[https://github.com/erlang/sourcer][sourcer]].
|
||||
|
||||
|
||||
** Plugins
|
||||
+ Erlang Mode (bundled with Erlang installations)
|
||||
+ [[https://github.com/joedevivo/flycheck-rebar3][flycheck-rebar3]]
|
||||
+ [[https://github.com/s-kostyaev/ivy-erlang-complete][ivy-erlang-complete]]
|
||||
|
||||
* Prerequisites
|
||||
You should have Erlang installed. Check your distribution's package manager or a
|
||||
version management tool such as [[https://github.com/kerl/kerl][kerl]].
|
||||
|
||||
If you want LSP support, install [[https://github.com/erlang/sourcer][sourcer]].
|
||||
|
||||
* Features
|
||||
- Code completion (~+lsp~, ~:completion company~, and ~:completion ivy~)
|
||||
- Syntax checking (~:checkers syntax~)
|
||||
9
.config/emacs/modules/lang/erlang/config.el
Normal file
9
.config/emacs/modules/lang/erlang/config.el
Normal file
@@ -0,0 +1,9 @@
|
||||
;;; lang/erlang/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
(use-package! erlang
|
||||
:mode ("\\.erlang\\'" . erlang-mode)
|
||||
:mode ("/rebar\\.config\\(?:\\.script\\)?\\'" . erlang-mode)
|
||||
:mode ("/\\(?:app\\|sys\\)\\.config\\'" . erlang-mode)
|
||||
:config
|
||||
(when (featurep! +lsp)
|
||||
(add-hook 'erlang-mode-local-vars-hook #'lsp!)))
|
||||
6
.config/emacs/modules/lang/erlang/doctor.el
Normal file
6
.config/emacs/modules/lang/erlang/doctor.el
Normal file
@@ -0,0 +1,6 @@
|
||||
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
||||
;;; lang/erlang/doctor.el
|
||||
|
||||
(assert! (or (not (featurep! +lsp))
|
||||
(featurep! :tools lsp))
|
||||
"This module requires (:tools lsp)")
|
||||
4
.config/emacs/modules/lang/erlang/packages.el
Normal file
4
.config/emacs/modules/lang/erlang/packages.el
Normal file
@@ -0,0 +1,4 @@
|
||||
;; -*- no-byte-compile: t; -*-
|
||||
;;; lang/erlang/packages.el
|
||||
|
||||
(package! erlang :pin "c1ab4b5424be7504cfc3c4e87a2116b7731d8f2d")
|
||||
Reference in New Issue
Block a user