Jonas Chevalier

Results 831 comments of Jonas Chevalier

sounds good. There is a scenario where the user wants to volume-mount the `/nix` prefix. Currently, it's an issue because the store also contains the nix installation and mounting the...

For local development, there could also be a mode where node_modules gets symlinked into the current folder when the `shellHook` get executed. That way the user has the exact same...

Hey @pjeby, thanks for letting me know about these other projects, it's always cool to discover new things and the approach other people took. My `mdsh` is called like that...

This topic came back a couple of times in my brain but I still haven't found a better name yet.

Initially, mdsh was only replacing the fenced block if it was right on the next line. But there is a markdown formatting tools called "prettier" that adds back an empty...

This was introduced in the last release (v0.6.0). Reverting to 0.5.0 should be fine.

That's an interesting idea, I wouldn't be against it if support for it was added. One limitation is that it could only support blocks with a single command, as it's...

Like in #8, the solution right now is pretty verbose: ``` include = with nix-filter; [ (and (inDirectory "frontend") (or_ isDirectory (matchExt "js")) ]; ]; ```

It's a limitation of the underlying nix builtin. I think the best strategy is to add isDirectory to the includes and blacklist the few folders that don't have md files...

Nice, I didn't think of that combo before. That would make things much more ergonomic. The only downside is more nix evaluation.