blob: 763412f7fa9068286b07799aeaaa3598d2a4db92 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
install: ${HOME}/.config ${HOME}/bin vim/pack/plugins/start/vim-go/README.md
git submodule update
rsync -r hypr/ ${HOME}/.config/hypr/
rsync -r kitty/ ${HOME}/.config/kitty/
rsync -r systemd/ ${HOME}/.config/systemd/
rsync -r tmux/ ${HOME}/.config/tmux/
rsync -r vim/ ${HOME}/.config/vim/
rsync -a bin/ ${HOME}/bin/
rsync -r wofi/ ${HOME}/.config/wofi/
rsync -r zshrc ${HOME}/.zshrc
systemctl --user daemon-reload
systemctl enable --now --user ssh-agent
vim/pack/plugins/start/vim-go/README.md:
git submodule update --init
${HOME}/bin:
mkdir ${HOME}/bin
${HOME}/.config:
mkdir ${HOME}/.config
.PHONY: install
|