/compact-mode

Emacs mode for Compact

Primary LanguageEmacs LispGNU General Public License v3.0GPL-3.0

Emacs mode for Compact

An Emacs major mode providing syntax highlighting, indentation and formatting commands for the Compact smart contract language.

Features

  • Syntax highlighting
  • Indentation

Installation

The package is not yet on MELPA, so pointing your emacs config to this repository is the way to go for now.

use-package

(use-package compact-mode
  :load-path "~/path/to/compact-mode")

vanilla

(add-to-list 'load-path "~/path/to/compact-mode")
(load-library "compact-mode")

doom-emacs

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"))