configs/helix: add cursor-shape and some lsp configin from snk

This commit is contained in:
Aaron Bieber 2023-05-02 19:40:03 -06:00
parent 8f161fa351
commit 5bc75bd346
No known key found for this signature in database

View File

@ -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";