From 74136352cf4156933249c5b83506b334fde2d596 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 13 Dec 2025 11:24:11 +0100 Subject: [PATCH] plugins/cord: update settingsExample --- plugins/by-name/cord/default.nix | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/plugins/by-name/cord/default.nix b/plugins/by-name/cord/default.nix index f00fed4d..a4167e9f 100644 --- a/plugins/by-name/cord/default.nix +++ b/plugins/by-name/cord/default.nix @@ -9,25 +9,16 @@ lib.nixvim.plugins.mkNeovimPlugin { maintainers = [ lib.maintainers.eveeifyeve ]; settingsExample = { - usercmd = false; display = { - show_time = true; - swap_fields = false; - swap_icons = false; + theme = "atom"; + flavor = "accent"; }; - ide = { - enable = true; - show_status = true; - timeout = 300000; - text = "Idle"; - tooltip = "💤"; - }; - text = { - viewing = "Viewing {}"; - editing = "Editing {}"; - file_browser = "Browsing files in {}"; - vcs = "Committing changes in {}"; - workspace = "In {}"; + editor.tooltip = "Neovim"; + timestamp.reset_on_idle = true; + idle = { + enabled = true; + timeout = 900000; }; + text.workspace = ""; }; }