From 7a7565cedf39cbe1889eacdb1559d7193c1092f5 Mon Sep 17 00:00:00 2001 From: Jeetaditya Chatterjee Date: Sat, 2 Apr 2022 02:53:00 +0100 Subject: [PATCH] nit(sh): revert formatting snuck in when running the formatter --- modules/lang/sh/config.el | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/modules/lang/sh/config.el b/modules/lang/sh/config.el index b8593401b..0ad4919a7 100755 --- a/modules/lang/sh/config.el +++ b/modules/lang/sh/config.el @@ -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))