wrap helix with lsp and formatter, and add some config for helix

This commit is contained in:
ulic-youthlic 2025-01-17 14:35:18 +08:00
parent ca525c5789
commit 9c60b5872c
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
6 changed files with 176 additions and 28 deletions

View file

@ -1,9 +1,12 @@
{ inputs, ... }:
{
outputs,
...
}:
final: prev:
let
inherit (final) stdenv;
inherit (stdenv.hostPlatform) system;
in
{
helix = inputs.helix.packages."${system}".default;
helix = outputs.packages."${system}".helix;
}