feat: set basic git configuration
This commit is contained in:
parent
a744cb7fcc
commit
6f574e0a2d
@ -158,6 +158,13 @@ RUN fish -c true \
|
|||||||
&& echo 'eval "$(${XDG_DATA_HOME}/rtx/bin/rtx activate bash)"' >> ${HOME}/.bashrc \
|
&& echo 'eval "$(${XDG_DATA_HOME}/rtx/bin/rtx activate bash)"' >> ${HOME}/.bashrc \
|
||||||
&& echo 'eval "$(zoxide init bash)"' >> ${HOME}/.bashrc
|
&& echo 'eval "$(zoxide init bash)"' >> ${HOME}/.bashrc
|
||||||
|
|
||||||
|
# configure git
|
||||||
|
ARG GIT_USER_EMAIL
|
||||||
|
ARG GIT_USER_NAME
|
||||||
|
RUN git config --global user.email "${GIT_USER_EMAIL}" \
|
||||||
|
&& git config --global user.name "${GIT_USER_NAME}" \
|
||||||
|
&& git config --global core.editor nvim
|
||||||
|
|
||||||
# install rtx plugins
|
# install rtx plugins
|
||||||
RUN ${XDG_DATA_HOME}/rtx/bin/rtx plugins install \
|
RUN ${XDG_DATA_HOME}/rtx/bin/rtx plugins install \
|
||||||
awscli \
|
awscli \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user