-
Hi, thanks for your great work on nvimdots. It made me appreciate how amazing nvim can be. I would like to ask how or if it is possible to accept all the defaults and install silently. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yep that's possible, and we have already utilized this feature in our CI pipeline. You only need to "pretend" that the current session is non-interactive (i.e., define Lines 174 to 192 in b05e62e Note that in non-interactive mode, the script will default-select the following options:
|
Beta Was this translation helpful? Give feedback.
Yep that's possible, and we have already utilized this feature in our CI pipeline. You only need to "pretend" that the current session is non-interactive (i.e., define
${NONINTERACTIVE}
OR${CI}
) during installation:nvimdots/scripts/install.sh
Lines 174 to 192 in b05e62e