You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN mkdir -p /var/run/tailscale /var/cache/tailscale /var/lib/tailscale
26
+
27
+
USER codespace
28
+
RUN sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
29
+
ENV SHELL=zsh
30
+
RUN echo "alias gits='git status'" >> $HOME/.zshrc
31
+
RUN echo "alias ls='ls -GFh'" >> $HOME/.zshrc
32
+
ENV NVM_DIR="$HOME/.nvm"
33
+
RUN echo ". ~/.nvm/nvm.sh" >> $HOME/.zshrc
34
+
RUN sed -i 's/plugins=(git)/plugins=(git npm docker-compose docker)/' $HOME/.zshrc
35
+
RUN git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
36
+
RUN sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="powerlevel10k\/powerlevel10k"/' $HOME/.zshrc
37
+
RUN wget https://gist.githubusercontent.com/trumbitta/dc0c235832c5851813746d5886e40c56/raw/4663769f792bc9990b6b18242819b37a89a8ce53/.p10k.zsh -O $HOME/.p10k.zsh
0 commit comments