aboutsummaryrefslogtreecommitdiff
path: root/modules/home/i3wm
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/i3wm')
-rw-r--r--modules/home/i3wm/nord-blue/default.nix1
-rw-r--r--modules/home/i3wm/nord-blue/helix.nix20
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