Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
24 lines (17 sloc) 561 Bytes
.PHONY: build run
NAME='dotfiles'
SHELL:=$(shell which bash)
all: build
build: Dockerfile
docker build -t ${NAME} .
try: build
docker run --rm -it ${NAME}
# http://www.cyberciti.biz/faq/bash-considered-harmful-to-match-dot-files-why/
install:
cp --verbose -r dots/.[^.]* ~
vim -u ~/.vim_vundle +PluginInstall --cmd "let g:session_autosave='no'" +qall
./setup_nvim.sh
./patch.sh apply
touch ~/.$(shell whoami)
update:
git subtree pull --squash --prefix dots/.vim/bundle/Vundle.vim/ git@github.com:VundleVim/Vundle.vim.git master -m "Update vundle"