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-lookup-handlers! 'sh-mode :documentation #'+sh-lookup-documentation-handler)
(set-ligatures! 'sh-mode
;; Functional
:def "function"
;; Types
:true "true" :false "false"
;; Flow
:not "!"
:and "&&" :or "||"
:in "in"
:for "for"
:return "return"
;; Other
:dot "." :dot "source")
;; Functional
:def "function"
;; Types
:true "true" :false "false"
;; Flow
:not "!"
:and "&&" :or "||"
:in "in"
:for "for"
:return "return"
;; Other
:dot "." :dot "source")
(when (featurep! +lsp)
(add-hook 'sh-mode-local-vars-hook #'lsp! 'append))