From c9d1fa6ab5338db15a6b704cbbe43e8651f8fdf6 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Thu, 12 Feb 2026 13:55:08 +0100 Subject: added helix --- modules/home/i3wm/nord-blue/helix.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 modules/home/i3wm/nord-blue/helix.nix (limited to 'modules/home/i3wm/nord-blue/helix.nix') diff --git a/modules/home/i3wm/nord-blue/helix.nix b/modules/home/i3wm/nord-blue/helix.nix new file mode 100644 index 0000000..6a828ff --- /dev/null +++ b/modules/home/i3wm/nord-blue/helix.nix @@ -0,0 +1,20 @@ +{ pkgs, config, lib, ... }: + +{ + programs.helix = { + enable = true; + settings = { + theme = "ayu_mirage"; + editor.cursor-shape = { + normal = "block"; + insert = "bar"; + select = "underline"; + }; + }; + languages.language = [{ + name = "nix"; + auto-format = true; + formatter.command = lib.getExe pkgs.nixfmt-rfc-style; + }]; + }; +} \ No newline at end of file -- cgit v1.2.3