This commit is contained in:
Jackson Delahunt 2019-01-30 04:41:43 +11:00
parent 92872fe131
commit 4611d17acf
2 changed files with 0 additions and 12 deletions

View file

@ -102,8 +102,6 @@ RUN vcsh clone https://github.com/sabrehagen/dotfiles-alacritty && \
# Add program configurations
COPY config/tmuxinator $HOME/.config/tmuxinator
COPY config/zsh/.zshenv $HOME/.zshenv.desktop
RUN sed -i '1s;^;source $HOME/.zshenv.desktop\n\n;' $HOME/.zshenv
# Cache zsh plugins
RUN zsh -c "source $HOME/.zshrc"

View file

@ -1,10 +0,0 @@
# Configure tmux to always use utf8 mode and a fixed socket path
export CONTAINER_TMUX_SOCKET=$HOME/.tmux.sock
touch $CONTAINER_TMUX_SOCKET
alias tmux="tmux -u -S $CONTAINER_TMUX_SOCKET"
# Change to the most frequently used directory
STARTUP_DIR=$HOME/repositories/stemn/stemn-backend
if [ -d $STARTUP_DIR ]; then
cd $STARTUP_DIR
fi