Remix.run Logo
psygn89 a day ago

This is great... one thing I wish is to be able to exclude are lines, for instance some lines in my config that only benefits the work I do. Some configs don't allow extending and that's where this would come in handy. Anyone have any tricks for that?

faithraven a day ago | parent | next [-]

You might be surprised, it's sort of possible. Ask your favourite AI agent about git clean filters, and .git/info/attributes, the per-clone sibling of .git/info/exclude. The docs are here: https://git-scm.com/docs/gitattributes#_filter

jo-m a day ago | parent | prev [-]

You can from the checked in config file include a local file which is not checked in (only if it exists).

For example, with direnv, the `.envrc` in my projects usually has

    source_env_if_exists .envrc.local
And the repo also ships with a `.envrc.local.example` file.
BeetleB a day ago | parent [-]

You missed this:

> Some configs don't allow extending