1
0
Fork 0
nix-homemanager-laptop/languages/toml.nix

23 lines
445 B
Nix

{ pkgs, treefmt }:
{
helix = {
language = {
name = "toml";
language-servers = [
"taplo"
"harper-ls"
];
formatter = {
command = "${treefmt}/bin/treefmt";
args = [
"--stdin"
".toml"
"--quiet"
];
};
auto-format = true;
};
language-server.taplo.command = "${pkgs.taplo}/bin/taplo";
};
treefmt.programs.taplo.enable = true;
}