Emacs personal configuration
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ;;; package --- Solidity mode
- ;;; Commentary:
- ;;; Code:
-
- (require-package 'solidity-mode)
-
- ;; https://emacs.stackexchange.com/a/17565/12560
- (defun solidity-custom-settings ()
- (setq tab-width 4)
- (setq c-basic-offset 4))
-
- (add-hook 'solidity-mode-hook 'solidity-custom-settings)
-
- (provide 'init-solidity)
-
- ;;; init-solidity.el ends here
|