This package provides syntax highlighting for Nelua language source files in GNU Emacs. With this mode, writing and reading Nelua code in Emacs becomes more visually pleasant and error-resistant.
- Syntax highlighting for Nelua keywords, comments, strings, functions, and more
- Basic filetype detection for
.nelua
files - Easily extensible for more features
-
Manual installation:
Downloadnelua.el
and place it in your Emacsload-path
. -
Add to your
.emacs
orinit.el
:(require 'nelua-mode) (add-to-list 'auto-mode-alist '("\\.nelua\\'" . nelua-mode))
Open any .nelua
file in Emacs. Syntax highlighting should be automatically enabled.
You can also manually enable the mode with:
M-x nelua-mode
Below is a screenshot of nelua-mode in action:
Pull requests, feature suggestions, and bug reports are welcome!