diff --git a/configs/helix.nix b/configs/helix.nix index 79e2622..8501f5e 100644 --- a/configs/helix.nix +++ b/configs/helix.nix @@ -1,11 +1,17 @@ { pkgs, ... }: let - tomlFmt = pkgs.formats.toml {}; + tomlFmt = pkgs.formats.toml { }; helixConfig = tomlFmt.generate "helix-config.toml" { theme = "acme"; editor = { mouse = false; + cursor-shape = { + insert = "bar"; + normal = "block"; + select = "underline"; + }; + lsp = { auto-signature-help = false; }; }; }; helixBin = "${pkgs.helix}/bin/hx";