doomemacs/modules/lang/solidity
2018-05-25 19:10:49 +02:00
..
config.el lang/solidity: conform to Doom conventions 2018-05-25 19:04:01 +02:00
doctor.el lang/solidity: improve binary checks in doctor.el 2018-05-25 19:06:29 +02:00
packages.el Remove Company package 2018-05-18 17:04:37 -05:00
README.org lang/solidity: conform README to doom conventions 2018-05-25 19:10:49 +02:00

:lang solidity

This module adds Solidity support through solidity-mode

  • Syntax-checking (flycheck)
  • Code completion ([[https://github.com/ssmolkin1/company-solidity][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