From 74a6785eb01523621515d74a33d07570a7b087f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jana=20D=C3=B6nszelmann?= Date: Fri, 23 Jan 2026 10:37:34 +0100 Subject: [PATCH] firefox bookmarks --- programs/firefox/default.nix | 7 +++++ programs/nvim/plugins.nix | 60 +++++++++++++++++++----------------- 2 files changed, 39 insertions(+), 28 deletions(-) diff --git a/programs/firefox/default.nix b/programs/firefox/default.nix index a3b6370..2a0c394 100644 --- a/programs/firefox/default.nix +++ b/programs/firefox/default.nix @@ -73,6 +73,7 @@ _: { "browser.tabs.closeWindowWithLastTab" = lock-false; "sidebar.position_start" = false; # sidebar on the right "toolkit.legacyUserProfileCustomizations.stylesheets" = true; + "browser.toolbars.bookmarks.visibility" = "always"; }; userChrome = builtins.readFile ./userChrome.css; @@ -121,6 +122,12 @@ _: { keyword = "!no"; url = "https://search.nixos.org/options?query=%s"; } + + # { + # name = "bank"; + # toolbar = true; + # url = "https://web.bunq.com/user"; + # } ]; }; diff --git a/programs/nvim/plugins.nix b/programs/nvim/plugins.nix index e0b2058..1e10af7 100644 --- a/programs/nvim/plugins.nix +++ b/programs/nvim/plugins.nix @@ -11,14 +11,14 @@ let }; in # fzy-lua-native = pkgs.vimUtils.buildVimPlugin { - # name = "fzy-lua-native"; - # src = pkgs.fetchFromGitHub { - # owner = "romgrk"; - # repo = "fzy-lua-native"; - # rev = "9d720745d5c2fb563c0d86c17d77612a3519c506"; - # hash = "sha256-pBV5iGa1+5gtM9BcDk8I5SKoQ9sydOJHsmyoBcxAct0="; - # }; - # }; +# name = "fzy-lua-native"; +# src = pkgs.fetchFromGitHub { +# owner = "romgrk"; +# repo = "fzy-lua-native"; +# rev = "9d720745d5c2fb563c0d86c17d77612a3519c506"; +# hash = "sha256-pBV5iGa1+5gtM9BcDk8I5SKoQ9sydOJHsmyoBcxAct0="; +# }; +# }; { programs.nixvim = { plugins = { @@ -286,29 +286,33 @@ in neo-tree = { enable = true; - closeIfLastWindow = true; - enableGitStatus = false; + settings = { + close_if_last_window = true; + enable_git_status = false; - window = { - position = "right"; - width = 30; - # mappings = { - # "" = "navigate_up"; - # "." = "set_root"; - # "/" = "fuzzy_finder"; - # "f" = "filter_on_submit"; - # "h" = "show_help"; - # }; - }; - filesystem = { - followCurrentFile.enabled = true; - filteredItems = { - hideHidden = false; - hideDotfiles = false; - forceVisibleInEmptyFolder = true; - hideGitignored = false; + window = { + position = "right"; + width = 30; + # mappings = { + # "" = "navigate_up"; + # "." = "set_root"; + # "/" = "fuzzy_finder"; + # "f" = "filter_on_submit"; + # "h" = "show_help"; + # }; }; + filesystem = { + follow_current_file.enabled = true; + filteredItems = { + hide_hidden = false; + hide_dotfiles = false; + force_visible_in_empty_folder = true; + hide_gitignored = false; + }; + }; + }; + }; nvim-lightbulb = {