firefox bookmarks
This commit is contained in:
parent
49b6f5bde0
commit
74a6785eb0
2 changed files with 39 additions and 28 deletions
|
|
@ -73,6 +73,7 @@ _: {
|
||||||
"browser.tabs.closeWindowWithLastTab" = lock-false;
|
"browser.tabs.closeWindowWithLastTab" = lock-false;
|
||||||
"sidebar.position_start" = false; # sidebar on the right
|
"sidebar.position_start" = false; # sidebar on the right
|
||||||
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||||
|
"browser.toolbars.bookmarks.visibility" = "always";
|
||||||
};
|
};
|
||||||
|
|
||||||
userChrome = builtins.readFile ./userChrome.css;
|
userChrome = builtins.readFile ./userChrome.css;
|
||||||
|
|
@ -121,6 +122,12 @@ _: {
|
||||||
keyword = "!no";
|
keyword = "!no";
|
||||||
url = "https://search.nixos.org/options?query=%s";
|
url = "https://search.nixos.org/options?query=%s";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# {
|
||||||
|
# name = "bank";
|
||||||
|
# toolbar = true;
|
||||||
|
# url = "https://web.bunq.com/user";
|
||||||
|
# }
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,14 +11,14 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
# fzy-lua-native = pkgs.vimUtils.buildVimPlugin {
|
# fzy-lua-native = pkgs.vimUtils.buildVimPlugin {
|
||||||
# name = "fzy-lua-native";
|
# name = "fzy-lua-native";
|
||||||
# src = pkgs.fetchFromGitHub {
|
# src = pkgs.fetchFromGitHub {
|
||||||
# owner = "romgrk";
|
# owner = "romgrk";
|
||||||
# repo = "fzy-lua-native";
|
# repo = "fzy-lua-native";
|
||||||
# rev = "9d720745d5c2fb563c0d86c17d77612a3519c506";
|
# rev = "9d720745d5c2fb563c0d86c17d77612a3519c506";
|
||||||
# hash = "sha256-pBV5iGa1+5gtM9BcDk8I5SKoQ9sydOJHsmyoBcxAct0=";
|
# hash = "sha256-pBV5iGa1+5gtM9BcDk8I5SKoQ9sydOJHsmyoBcxAct0=";
|
||||||
# };
|
# };
|
||||||
# };
|
# };
|
||||||
{
|
{
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
plugins = {
|
plugins = {
|
||||||
|
|
@ -286,8 +286,9 @@ in
|
||||||
|
|
||||||
neo-tree = {
|
neo-tree = {
|
||||||
enable = true;
|
enable = true;
|
||||||
closeIfLastWindow = true;
|
settings = {
|
||||||
enableGitStatus = false;
|
close_if_last_window = true;
|
||||||
|
enable_git_status = false;
|
||||||
|
|
||||||
window = {
|
window = {
|
||||||
position = "right";
|
position = "right";
|
||||||
|
|
@ -301,14 +302,17 @@ in
|
||||||
# };
|
# };
|
||||||
};
|
};
|
||||||
filesystem = {
|
filesystem = {
|
||||||
followCurrentFile.enabled = true;
|
follow_current_file.enabled = true;
|
||||||
filteredItems = {
|
filteredItems = {
|
||||||
hideHidden = false;
|
hide_hidden = false;
|
||||||
hideDotfiles = false;
|
hide_dotfiles = false;
|
||||||
forceVisibleInEmptyFolder = true;
|
force_visible_in_empty_folder = true;
|
||||||
hideGitignored = false;
|
hide_gitignored = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nvim-lightbulb = {
|
nvim-lightbulb = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue