An Emacs major mode providing syntax highlighting, indentation and formatting commands for the Compact smart contract language.
- Syntax highlighting
- Indentation
The package is not yet on MELPA, so pointing your emacs config to this repository is the way to go for now.
(use-package compact-mode
:load-path "~/path/to/compact-mode")
(add-to-list 'load-path "~/path/to/compact-mode")
(load-library "compact-mode")
Add this to your packages.el
:
(package! compact-mode
:recipe (:host github :repo "compact-lang/compact-mode"))
Add this to your config.el
:
(use-package! compact-mode)
and run doom sync
.
For faster feedback time during development:
(package! compact-mode
:recipe (:local-repo "~/path/to/compact-mode"))