add Sorbet support for Ruby

main
Brian Hicks 2022-09-19 13:10:56 -05:00
parent 780ceea1ee
commit 7c35d02bcb
Signed by: brian
GPG Key ID: C4F324B9CAAB0D50
1 changed files with 14 additions and 4 deletions

View File

@ -1,10 +1,20 @@
{ pkgs, ... }: {
programs.helix = {
enable = true;
languages = [{
name = "rust";
auto-format = true;
}];
languages = [
{
name = "rust";
auto-format = true;
}
{
name = "ruby";
roots = ["Gemfile" "Gemfile.lock"];
language-server = {
command = "srb";
args = [ "typecheck" "--lsp" ];
};
}
];
settings = {
theme = "monokai_pro_machine";