summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--brave-config.nix5
-rw-r--r--home.nix1
-rw-r--r--neovim.nix14
-rw-r--r--qutebrowser.nix11
4 files changed, 23 insertions, 8 deletions
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 = {
+ };
+ };
+}