From: Andrew Date: Sun, 31 Aug 2025 23:37:53 +0000 (-0400) Subject: tried qute browser X-Git-Url: http://git.skullheadx.com/projects/dotfiles.html?a=commitdiff_plain;h=0bb811b3577b31c79da3dd38d02eb5bf7bd64296;p=nixos.git tried qute browser --- diff --git a/brave-config.nix b/brave-config.nix index 39ff86a..cc78b9c 100644 --- a/brave-config.nix +++ b/brave-config.nix @@ -1,5 +1,8 @@ -{ config, pkgs, ... }: { + config, + pkgs, + ... +}: { home.file = { ".config/BraveSoftware/Brave-Browser/Local State" = { source = ./brave-config/Local-State; diff --git a/home.nix b/home.nix index 0d41289..90c25ed 100644 --- a/home.nix +++ b/home.nix @@ -26,6 +26,7 @@ ./rmpc-config.nix ./waybar.nix ./freetube.nix + ./qutebrowser.nix ]; # Home Manager needs a bit of information about you and the paths it should diff --git a/neovim.nix b/neovim.nix index 99703fd..9c5e715 100644 --- a/neovim.nix +++ b/neovim.nix @@ -245,13 +245,13 @@ enabled = true; render_modes = false; icons = ["●" "○" "◆" "◇"]; - ordered_icons = '' - function(ctx) - local value = vim.trim(ctx.value) - local index = tonumber(value:sub(1, #value - 1)) - return ('%d.'):format(index > 1 and index or ctx.index) - end - ''; + # ordered_icons = '' + # function(ctx) + # local value = vim.trim(ctx.value) + # local index = tonumber(value:sub(1, #value - 1)) + # return ('%d.'):format(index > 1 and index or ctx.index) + # end + # ''; left_pad = 0; right_pad = 0; highlight = "RenderMarkdownBullet"; diff --git a/qutebrowser.nix b/qutebrowser.nix new file mode 100644 index 0000000..5a59761 --- /dev/null +++ b/qutebrowser.nix @@ -0,0 +1,11 @@ +{ + config, + pkgs, + ... +}: { + programs.qutebrowser = { + enable = true; + settings = { + }; + }; +}