From 5bc75bd346aad103a1878b39834211f9337e4e91 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Tue, 2 May 2023 19:40:03 -0600 Subject: [PATCH] configs/helix: add cursor-shape and some lsp configin from snk --- configs/helix.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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";