From 89ca030a5fe4019f0b5c95a9ad033270167088f2 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Mon, 24 Mar 2025 18:46:29 +0100 Subject: [PATCH] helix.nix: switch to gruvbox, add hidden files in file picker --- packages/helix.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/helix.nix b/packages/helix.nix index 003076e..be236e1 100644 --- a/packages/helix.nix +++ b/packages/helix.nix @@ -30,7 +30,7 @@ inherit (lib) getExe; toml = formats.toml {}; helix-config = { - theme = "catppuccin_mocha"; + theme = "gruvbox"; editor = { cursorline = false; color-modes = true; @@ -42,6 +42,9 @@ display-messages = true; snippets = true; }; + file-picker = { + hidden = false; + }; line-number = "relative"; true-color = true; auto-format = true;