mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Merge pull request #706 from ar1a/javascript-pretty-symbols
lang/javascript: fix set-pretty-symbols!
This commit is contained in:
@ -2,20 +2,20 @@
|
|||||||
|
|
||||||
(after! (:any js2-mode web-mode)
|
(after! (:any js2-mode web-mode)
|
||||||
(set-pretty-symbols! '(js2-mode web-mode)
|
(set-pretty-symbols! '(js2-mode web-mode)
|
||||||
'(;; Functional
|
;; Functional
|
||||||
:def "function"
|
:def "function"
|
||||||
:lambda "() =>"
|
:lambda "() =>"
|
||||||
:composition "compose"
|
:composition "compose"
|
||||||
;; Types
|
;; Types
|
||||||
:null "null"
|
:null "null"
|
||||||
:true "true" :false "false"
|
:true "true" :false "false"
|
||||||
;; Flow
|
;; Flow
|
||||||
:not "!"
|
:not "!"
|
||||||
:and "&&" :or "||"
|
:and "&&" :or "||"
|
||||||
:for "for"
|
:for "for"
|
||||||
:return "return"
|
:return "return"
|
||||||
;; Other
|
;; Other
|
||||||
:yield "import")))
|
:yield "import"))
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
|
Reference in New Issue
Block a user