doomemacs/modules/lang/solidity
Henrik Lissner 76cacb5bfe
💥 Rename def-package! -> use-package!
Calling this pivotal macro "def-package!" has frequently been a source
of confusion. It is a thin wrapper around use-package, and it should be
obvious that it is so. For this reason, and to match the naming
convention used with other convenience macros/wrappers, it is now
use-package!.

Also changes def-package-hook! -> use-package-hook!

The old macros are now marked obsolete and will be removed when straight
integration is merged.
2019-07-23 12:50:45 +02:00
..
config.el 💥 Rename def-package! -> use-package! 2019-07-23 12:50:45 +02:00
doctor.el lang/solidity: improve binary checks in doctor.el 2018-05-25 19:06:29 +02:00
packages.el Require solidity packages 2019-02-06 19:56:22 -06:00
README.org Update README.org 2018-05-25 20:29:15 -05:00

:lang solidity

This module adds Solidity support through solidity-mode

  • Syntax-checking (flycheck)
  • Code completion (company-solidity)
  • Gas estimation (C-c C-g)

Table of Contents   TOC

Module Flags

This module provides no flags.

Prerequisites

This module requires one or both linters for syntax checking:

If both are enabled Solc is run first, then Solium if Solc catches no errors.

Solc

npm install -g solc

Solium

npm install -g solium

By default solium looks for .soliumrc.json in the project directory, but you can set it to your own .soliumrc.json with this in your private doom config.el

(setq flycheck-solidity-solium-soliumrcfile "~/.soliumrc.json")

TODO

  • Snippets