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