From c9e15a7bed30e11b979194d8a333b2574e20d625 Mon Sep 17 00:00:00 2001 From: notohh Date: Mon, 30 Jan 2023 11:31:46 -0500 Subject: [PATCH] feat: configure helix in nix --- modules/home/helix/helix.nix | 23 +++++++++++++++++++ .../home/helix/{default.nix => languages.nix} | 0 2 files changed, 23 insertions(+) create mode 100644 modules/home/helix/helix.nix rename modules/home/helix/{default.nix => languages.nix} (100%) diff --git a/modules/home/helix/helix.nix b/modules/home/helix/helix.nix new file mode 100644 index 0000000..cb95797 --- /dev/null +++ b/modules/home/helix/helix.nix @@ -0,0 +1,23 @@ +{config, pkgs, inputs, ...}: { + programs.helix = { + enable = true; + # langauges = import ./languages.nix args; + settings = { + theme = "catppuccin_mocha"; + editor = { + true-color = true; + color-modes = true; + cursorline = true; + cursor-shape = { + insert = "bar"; + normal = "block"; + select = "underline"; + }; + indent-guides = { + render = true; + rainbow = "dim"; + }; + }; +}; +}; +} \ No newline at end of file diff --git a/modules/home/helix/default.nix b/modules/home/helix/languages.nix similarity index 100% rename from modules/home/helix/default.nix rename to modules/home/helix/languages.nix