nit(sh): revert formatting

snuck in when running the formatter
This commit is contained in:
Jeetaditya Chatterjee 2022-04-02 02:53:00 +01:00
parent 4334eb285f
commit 7a7565cedf
No known key found for this signature in database
GPG key ID: 09D54CECD2132B91

View file

@ -24,18 +24,18 @@
(set-repl-handler! 'sh-mode #'+sh/open-repl) (set-repl-handler! 'sh-mode #'+sh/open-repl)
(set-lookup-handlers! 'sh-mode :documentation #'+sh-lookup-documentation-handler) (set-lookup-handlers! 'sh-mode :documentation #'+sh-lookup-documentation-handler)
(set-ligatures! 'sh-mode (set-ligatures! 'sh-mode
;; Functional ;; Functional
:def "function" :def "function"
;; Types ;; Types
:true "true" :false "false" :true "true" :false "false"
;; Flow ;; Flow
:not "!" :not "!"
:and "&&" :or "||" :and "&&" :or "||"
:in "in" :in "in"
:for "for" :for "for"
:return "return" :return "return"
;; Other ;; Other
:dot "." :dot "source") :dot "." :dot "source")
(when (featurep! +lsp) (when (featurep! +lsp)
(add-hook 'sh-mode-local-vars-hook #'lsp! 'append)) (add-hook 'sh-mode-local-vars-hook #'lsp! 'append))