diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-12 13:55:08 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-12 13:55:08 +0100 |
| commit | c9d1fa6ab5338db15a6b704cbbe43e8651f8fdf6 (patch) | |
| tree | 9862e532a963e74365f52c6e03e640df787f261b /modules/home/i3wm/nord-blue | |
| parent | abd9f1d30b6b49840255b7e982548913f4ffb1b6 (diff) | |
added helix
Diffstat (limited to 'modules/home/i3wm/nord-blue')
| -rw-r--r-- | modules/home/i3wm/nord-blue/default.nix | 1 | ||||
| -rw-r--r-- | modules/home/i3wm/nord-blue/helix.nix | 20 |
2 files changed, 21 insertions, 0 deletions
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 |
