From 364a59b3be874d7e5b0406af619a7405df3a7a77 Mon Sep 17 00:00:00 2001 From: Theodor Bjorkman Date: Tue, 4 Mar 2025 08:55:36 +0100 Subject: [PATCH] Fixed description formatting --- modules/plugins/utility/harpoon/harpoon.nix | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/modules/plugins/utility/harpoon/harpoon.nix b/modules/plugins/utility/harpoon/harpoon.nix index 835a343b..9961aa07 100644 --- a/modules/plugins/utility/harpoon/harpoon.nix +++ b/modules/plugins/utility/harpoon/harpoon.nix @@ -22,14 +22,18 @@ in { save_on_toggle = mkOption { type = bool; default = false; - description = '' Any time the ui menu is closed then we will save the - state back to the backing list, not to the fs''; + description = '' + Any time the ui menu is closed then we will save the + state back to the backing list, not to the fs + ''; }; sync_on_ui_close = mkOption { type = bool; default = false; - description = '' Any time the ui menu is closed then the state of the - list will be sync'd back to the fs''; + description = '' + Any time the ui menu is closed then the state of the + list will be sync'd back to the fs + ''; }; key = mkOption { type = luaInline; @@ -38,8 +42,10 @@ in { return vim.loop.cwd() end ''; - description = '' How the out list key is looked up. This can be useful - when using worktrees and using git remote instead of file path''; + description = '' + How the out list key is looked up. This can be useful + when using worktrees and using git remote instead of file path + ''; }; }; };