diff --git a/modules/lang/php/config.el b/modules/lang/php/config.el index 5405c1ec5..a13b7dc8d 100644 --- a/modules/lang/php/config.el +++ b/modules/lang/php/config.el @@ -21,6 +21,23 @@ (set-repl-handler! 'php-mode #'php-boris) (set-lookup-handlers! 'php-mode :documentation #'php-search-documentation) (set-formatter! 'php-mode #'php-cs-fixer-fix) + (set-pretty-symbols! 'php-mode + ;; Functional + :lambda "function()" + :def "function" + ;; Types + :null "null" + :true "true" :false "false" + :int "int" :float "float" + :str "string" + :bool "list" + ;; Flow + :not "!" + :and "&&" :and "and" + :or "||" :or "or" + :for "for" + :return "return" + :yield "use") (if (featurep! +lsp) (add-hook 'php-mode-local-vars-hook #'lsp!)