From 9da63be993417a941e2297602c9444dd3b18ec3d Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Sun, 24 Sep 2023 16:04:41 +0200 Subject: [PATCH] set push.autoSetupRemote git config always show firefox bookmark toolbar --- home.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/home.nix b/home.nix index 15d2f6d..d1511c3 100644 --- a/home.nix +++ b/home.nix @@ -45,6 +45,7 @@ in isDefault = true; settings = { "browser.aboutConfig.showWarning" = false; + "browser.toolbars.bookmarks.visibility" = "always"; }; extensions = import ./firefox-addons (args // {inherit nurpkgs; }); }; @@ -76,7 +77,10 @@ in enable = true; userName = "Pim Kunis"; userEmail = "pim@kunis.nl"; - extraConfig.core.editor = "nvim"; + extraConfig = { + core.editor = "nvim"; + push.autoSetupRemote = true; + }; }; };