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.

17 satır
339B

  1. ;;; package --- Solidity mode
  2. ;;; Commentary:
  3. ;;; Code:
  4. (require-package 'solidity-mode)
  5. ;; https://emacs.stackexchange.com/a/17565/12560
  6. (defun solidity-custom-settings ()
  7. (setq tab-width 4)
  8. (setq c-basic-offset 4))
  9. (add-hook 'solidity-mode-hook 'solidity-custom-settings)
  10. (provide 'init-solidity)
  11. ;;; init-solidity.el ends here