neo2005/config/plugins/lang/protobuf.nix
2024-12-19 19:16:51 +01:00

24 lines
348 B
Nix

{ pkgs, ... }:
{
# Enable language server for protbuf files (.proto)
plugins = {
lsp.servers.protols = {
enable = true;
};
lint = {
lintersByFt = {
protobuf = [ "protobuf" ];
};
linters = {
protobuf = {
cmd = "${pkgs.protolint}/bin/protolint";
};
};
};
};
}