From 8e20ffd92842b60ea928e5b9d3863ca26245ccf3 Mon Sep 17 00:00:00 2001 From: diniamo Date: Sun, 6 Oct 2024 13:32:04 +0200 Subject: [PATCH] surround: make description multi-line --- modules/plugins/utility/surround/surround.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/plugins/utility/surround/surround.nix b/modules/plugins/utility/surround/surround.nix index e79d733b..7d006381 100644 --- a/modules/plugins/utility/surround/surround.nix +++ b/modules/plugins/utility/surround/surround.nix @@ -7,7 +7,11 @@ in { enable = mkOption { type = bool; default = false; - description = "nvim-surround: add/change/delete surrounding delimiter pairs with ease. Note that the default mappings deviate from upstreeam to avoid conflicts with nvim-leap."; + description = '' + nvim-surround: add/change/delete surrounding delimiter pairs with ease. + Note that the default mappings deviate from upstreeam to avoid conflicts + with nvim-leap. + ''; }; setupOpts = mkPluginSetupOption "nvim-surround" {};