-
Hello. The zimrc and zshrc files that are created during the installation process -- will those ever get automatically updated by some future process? I noticed they have boundary makers in them, like this:
This sort of makes me expect that it will get updated programmatically? For the zshrc template... is the only truly important section the module init? My second question then would be: What custom config should go before the module init section and what goes after it? Are there things that have to go in either section? E.g. where should |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @kyounger. Very good questions!
There are no current plans to automatically update any section added to the dot files by the installation script.
Yes. I'm trying to update the documentation to make it clear what all the sections in the
This really depends on each specific custom config case. Maybe I'm missing some other obvious examples. Anyone? |
Beta Was this translation helpful? Give feedback.
-
Hmm @ericbn I would really suggest maybe only adding what's necessary and then maybe a link to a example of more advanced things you can do, I think zshrc's can get very long when you start having a lot of things going on and keeping the zimfw part short would be a big plus for it's usage IMO. |
Beta Was this translation helpful? Give feedback.
Hi @kyounger. Very good questions!
There are no current plans to automatically update any section added to the dot files by the installation script.
Yes. I'm trying to update the documentation to make it clear what all the sections in the
~/.zshrc
do. Comments in #453 are more than welcome!This really depends on each specific custom config case.
zstyle
definitions tend to be required before the modules are initialized. Also,fpath
must be set to its f…