Elixir formats long numbers with an underscore
This commit is contained in:
parent
13f9f1a32a
commit
03add77b75
1 changed files with 8 additions and 0 deletions
|
@ -3,6 +3,14 @@
|
|||
(after! projectile
|
||||
(add-to-list 'projectile-project-root-files "mix.exs"))
|
||||
|
||||
(after! highlight-numbers
|
||||
(puthash 'elixir-mode
|
||||
(rx (and symbol-start
|
||||
(? "-")
|
||||
(+ digit)
|
||||
(0+ (and "_" (= 3 digit)))
|
||||
symbol-end))
|
||||
highlight-numbers-modelist))
|
||||
|
||||
;;
|
||||
;;; Packages
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue