Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
376 changes: 263 additions & 113 deletions README.md

Large diffs are not rendered by default.

108 changes: 0 additions & 108 deletions config.toml

This file was deleted.

12 changes: 8 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ WORKDIR /root

ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get install -y vim git wget exuberant-ctags cscope bash-completion cmake g++ python-dev python-pip silversearcher-ag
apt-get install -y vim git wget exuberant-ctags cscope bash-completion cmake g++ python-dev python-pip silversearcher-ag stow

RUN git clone https://github.com/tdmanv/dotfiles.git && \
cd dotfiles && \
wget https://foosoft.net/projects/homemaker/dl/homemaker_linux_amd64.tar.gz && \
tar xvf homemaker_linux_amd64.tar.gz && \
./homemaker_linux_amd64/homemaker --clobber --verbose config.toml .
stow --dir /root/dotfiles/stow -S bash -t /root -v && \
stow --dir /root/dotfiles/stow -S git -t /root -v && \
stow --dir /root/dotfiles/stow -S inputrc -t /root -v && \
mkdir -p /root/.config/nvim && \
stow --dir /root/dotfiles/stow -S nvim -t /root/.config/nvim -v && \
stow --dir /root/dotfiles/stow -S tmux -t /root -v && \
stow --dir /root/dotfiles/stow -S zsh -t /root -v

# Clean up APT when done.
#RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Loading