dotfiles/Makefile

76 lines
1.9 KiB
Makefile
Raw Normal View History

2016-10-31 21:51:04 +00:00
.PHONY: help git lftp mpd ncmpcpp npm nvim ssh sway tmux urxvt wallpapers zsh clean
2016-10-23 04:18:46 +00:00
.DEFAULT: help
help:
@echo "all > set up everything"
@echo "git > global git config & aliases"
@echo "lftp > sftp management"
2016-10-31 21:51:04 +00:00
@echo "mpd > music player daemon config"
@echo "ncmpcpp > ncurses mpc++ ui/colour settings & playlists"
@echo "npm > npm configuration (ha ha)"
@echo "nvim > neovim config & plugins"
@echo "ssh > safe-ish ssh config"
@echo "sway > minimal tiling wm for naughty computers"
2016-10-29 05:09:40 +00:00
@echo "tmux > tmux config"
@echo "urxvt > terminal colours & keyboard settings"
@echo "wallpapers > system wallpapers"
@echo "zsh > shell, aliases and cool stuff"
2016-10-23 04:18:46 +00:00
@echo ""
@echo " mostly, i'm just lazy"
2016-10-23 04:18:46 +00:00
2016-10-31 21:51:04 +00:00
all: git lftp mpd ncmpcpp npm nvim ssh sway tmux urxvt wallpapers zsh
2016-10-23 04:18:46 +00:00
git:
@stow -t ~/ git
lftp:
@stow -t ~/ lftp
2016-10-31 21:51:04 +00:00
mpd:
@stow -t ~/ mpd
ncmpcpp:
@stow -t ~/ ncmpcpp
2016-10-23 04:18:46 +00:00
npm:
@mkdir -p ~/.cache/npm ~/.local/share/npm
@stow -t ~/ npm
nvim:
@stow -t ~/ nvim
curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
2016-10-23 04:18:46 +00:00
@echo "Run :PlugInstall when nvim is first run!"
ssh:
@stow -t ~/ ssh
sway:
@stow -t ~/ sway
2016-10-29 05:09:40 +00:00
tmux:
git clone https://github.com/tmux-plugins/tpm ~/.config/tmux/plugins/tpm
@stow -t ~/ tmux
2016-10-23 04:18:46 +00:00
urxvt:
@stow -t ~/ urxvt
wallpapers:
@stow -t ~/ wallpapers
2016-10-23 04:18:46 +00:00
zsh:
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
git clone https://github.com/zsh-users/zsh-completions.git ~/.oh-my-zsh/custom/plugins/zsh-completions
2016-10-23 04:18:46 +00:00
@stow -t ~/ zsh
clean:
2016-10-29 05:09:40 +00:00
@stow -D git lftp npm nvim ssh sway tmux urxvt zsh
2016-10-23 04:18:46 +00:00
@rm -rf ~/.config/git \
~/.config/lftp ~/.local/share/lftp \
~/.config/npm ~/.cache/npm ~/.local/share/npm \
~/.config/nvim \
~/.config/sway \
2016-10-29 05:09:40 +00:00
~/.config/tmux \
2016-10-23 04:18:46 +00:00
~/.oh-my-zsh