Ross A. Baker
Ross A. Baker
That answers my question about whether there's more than `languages.whatever.enable`. We generally want our [sbt to have a specific JDK](https://github.com/typelevel/typelevel-nix/blob/322901710808b2703bd972a4ac6d11444b28a5c4/modules/typelevelShell.nix#L40), and having Scala Native support implies [at least two](https://github.com/typelevel/typelevel-nix/blob/322901710808b2703bd972a4ac6d11444b28a5c4/modules/native.nix#L19-L22), usually...
My setup behaves like this: ```console $ cd ~ $ which metals metals not found $ cd ~/src/http4s direnv: loading ~/src/http4s/.envrc direnv: using flake 🔨 Welcome to http4s [general commands]...
I discovered this week that Temurin does not run on aarch64-darwin, at least for Java 8. The default devShell and the CI shells in http4s are now on disjoint JVMs....
Note that for generated files, it's possible to collapse the diffs entirely with git attributes, which might be a good g8 template addition. See https://medium.com/@clarkbw/managing-generated-files-in-github-1f1989c09dfd.
Glad to see this moving along! On c8a7bba, I can type with the expected indent after `{` and outdent after `}`: ```scala abstract class Foo { def bar = 42...
@jackcviers Yes, you need to be on the scala3 branch of his repo. @Kazark 1ef3ce5 fixes the issue I reported on c8a7bba.
Another use case: I'm trying out lsp-pyright, which is finding both the original Python source and `*.pyi` stubs as definitions. The stubs are helpful for documenting types, but don't add...
All of Ben's points are good, but I am wary of a breaking change for something already so widely depended on. I'd be in favor of a rebrand that makes...
Yep, I think we're on the same page. New examples and emphases in the docs would be good, and changes that break existing code would not be good.
Eek! Optional dependencies are a linker disaster waiting to happen. Even with fallbacks, the end user has to maintain a fragile dependency relationship instead of the standard transitivity and eviction...