diff options
Diffstat (limited to 'gotty')
-rw-r--r-- | gotty/Dockerfile | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/gotty/Dockerfile b/gotty/Dockerfile index 41def52..4b649bd 100644 --- a/gotty/Dockerfile +++ b/gotty/Dockerfile @@ -1,11 +1,11 @@ FROM alpine:3.12 RUN apk update && apk upgrade -RUN apk add tmux st vim ripgrep fzf curl wget git ctags zsh python3 lynx go +RUN apk add tmux st vim ripgrep fzf curl wget git ctags zsh python3 lynx go make cmake gcc lua gdb RUN mkdir devi WORKDIR /devi -RUN git clone https://github.com/nanotech/jellybeans.vim ~/.vim/bundle/jellybeans.vim +RUN git clone http://github.com/nanotech/jellybeans.vim ~/.vim/bundle/jellybeans.vim RUN git clone http://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim RUN git clone http://github.com/tpope/vim-surround ~/.vim/bundle/vim-surround RUN git clone http://github.com/easymotion/vim-easymotion ~/.vim/bundle/vim-easymotion @@ -18,8 +18,25 @@ RUN git clone http://github.com/majutsushi/tagbar ~/.vim/bundle/tagbar RUN git clone http://github.com/ludovicchabant/vim-gutentags ~/.vim/bundle/vim-gutentags RUN git clone http://github.com/mbbill/undotree ~/.vim/bundle/undotree -RUN git clone http://github.com/terminaldweller/fedora && cd fedora/baseline && cp ./.vimrc ~/.vimrc +RUN git clone http://github.com/terminaldweller/fedora +RUN (cd fedora/baseline && cp ./.vimrc ~/.vimrc) +RUN (cd fedora/baseline && cp ./.tmux.conf ~/.tmux.conf) RUN go get github.com/yudai/gotty + +RUN sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" +RUN (cd fedora/baseline && cp ./.zshrc ~/.zshrc) + +RUN zsh +ENV SHELL=/bin/zsh +RUN (cd ~; git clone https://github.com/wting/autojump) +RUN (cd ~/autojump; python3 ./install.py) +RUN echo "#autojump" >> ~/.zshrc +RUN (cd ~; echo "[[ -s $(pwd)/.autojump/etc/profile.d/autojump.sh ]] && source $(pwd)/.autojump/etc/profile.d/autojump.sh" >> ~/.zshrc) +RUN echo "autoload -U compinit && compinit -u" >> ~/.zshrc +RUN (cd ~/.oh-my-zsh/plugins; git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/plugins/zsh-syntax-highlighting) + RUN vim -T xterm +Helptags +qall EXPOSE 9000 +ENV TERM=st-256 +# RUN st |