Skip to content
Oleksii Lisikh edited this page Feb 19, 2026 · 10 revisions

scala-hints.nvim Wiki

Welcome to the scala-hints.nvim documentation.

Quick Links

What This Plugin Does

Provides Neovim diagnostics and quickfix code actions for Scala effect libraries:

// ZIO examples
ZIO.succeed(())            ZIO.unit
.map(_ => ())              .unit
.catchAll(_ => ZIO.unit)   .ignore

// Cats-Effect examples
IO(println(x))             IO.println(x)
io.map(_ => ())            io.void

See the GitHub repo for more details.

Clone this wiki locally