Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| .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" |