Sridhar Ratnakumar
Sridhar Ratnakumar
The following is too bright. How do we implement [dark mode](https://tailwindcss.com/docs/dark-mode) for the current Tailwind-based theme?
I wrote a wrapper around `use_query`, called `use_server_query`, specifically geared to call server functions. The main reason (aside from the nicety of being able to pass server fn directly, and...
For example, when I type `Character literals may not be empty` in the search box, I'd expect to see [GHC-11861](https://errors.haskell.org/messages/GHC-11861/index.html), but currently, it returns 0 results presumably because only the...
For eg., to disable ormolu/fourmolu, ```nix { settings.haskell-language-server.custom = with pkgs.haskell.lib.compose; lib.flip lib.pipe [ (disableCabalFlag "ormolu") (disableCabalFlag "fourmolu") (drv: drv.override { hls-ormolu-plugin = null; }) (drv: drv.override { hls-fourmolu-plugin =...
cc @aravindgopall who continues this. Resolves #144
Resolves #290
Our `cabal.project` parser is rather primitive and in need of improvement. It has the following known issues. - [ ] https://github.com/srid/haskell-flake/issues/193 - [ ] https://github.com/srid/haskell-flake/issues/186 - [ ] https://github.com/srid/haskell-flake/issues/113
Like https://github.com/nickel-lang/organist/blob/d69c758780974ed8729bb32e1f8642f61891b7a9/flake.nix#L83-L94
`buildFromSdist` provides the benefit of checking release-worthiness (something not all Haskell projects care about, because they don't all care to release to Hackage). But it does so at the expense...