From fdd921d9ffb7395f66fb4c2e2f5c3fe1eb332f92 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 25 Sep 2021 20:48:05 +0200 Subject: [PATCH] Indent lines after open parens as blocks This will move lines more to the left when specifying arguments to constructors or functions on multiple lines. Nested function calls can also be broken into multiple lines to reduce their overall line width. This looks nicer from my point of view :) --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 27df821..50b935f 100644 --- a/init.el +++ b/init.el @@ -2934,7 +2934,8 @@ With given ARG, display files in `db/important-document-path’." cperl-invalid-face 'default cperl-electric-keywords nil cperl-lazy-help-time 2 - cperl-highlight-variables-indiscriminately t)) + cperl-highlight-variables-indiscriminately t + cperl-indent-parens-as-block t)) :config (progn (add-hook 'cperl-mode-hook 'flycheck-mode) (add-hook 'cperl-mode-hook 'prettify-symbols-mode)