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/default.nix | 1 + modules/home/i3wm/nord-blue/helix.nix | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 modules/home/i3wm/nord-blue/helix.nix (limited to 'modules') diff --git a/modules/home/i3wm/nord-blue/default.nix b/modules/home/i3wm/nord-blue/default.nix index 0be0753..fca7c9c 100644 --- a/modules/home/i3wm/nord-blue/default.nix +++ b/modules/home/i3wm/nord-blue/default.nix @@ -5,6 +5,7 @@ ./alacritty.nix ./i3.nix ./nvim.nix + ./helix.nix ./picom.nix ]; } \ No newline at end of file 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