26 lines
789 B
EmacsLisp
26 lines
789 B
EmacsLisp
;;; lang/solidity/config.el -*- lexical-binding: t; -*-
|
|
|
|
;;
|
|
;; Packages
|
|
|
|
;;;###package solidity-mode
|
|
(setq solidity-comment-style 'slash)
|
|
|
|
|
|
(use-package! solidity-flycheck ; included with solidity-mode
|
|
:when (featurep! :checkers syntax)
|
|
:after solidity-mode
|
|
:config
|
|
(setq flycheck-solidity-solc-addstd-contracts t)
|
|
(when (funcall flycheck-executable-find solidity-solc-path)
|
|
(add-to-list 'flycheck-checkers 'solidity-checker nil #'eq))
|
|
(when (funcall flycheck-executable-find solidity-solium-path)
|
|
(add-to-list 'flycheck-checkers 'solium-checker nil #'eq)))
|
|
|
|
|
|
(use-package! company-solidity
|
|
:when (featurep! :completion company)
|
|
:after solidity-mode
|
|
:config
|
|
(delq! 'company-solidity company-backends)
|
|
(set-company-backend! 'solidity-mode 'company-solidity))
|