-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (35 loc) · 1.25 KB
/
Copy pathMakefile
File metadata and controls
46 lines (35 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
.PHONY: vim2git git2vim tmux2git git2tmux ideavim2git git2ideavim
vim2git:
rm -rf ~/Documents/dev/dotfiles/nvim
cp -R ~/.config/nvim ~/Documents/dev/dotfiles/nvim
rm -rf ~/Documents/dev/dotfiles/vim/.vimrc
cp ~/.vimrc ~/Documents/dev/dotfiles/vim/
git2vim:
rm -rf ~/.config/nvim
cp -R ~/Documents/dev/dotfiles/nvim ~/.config/nvim
rm -rf ~/.vimrc
cp ~/Documents/dev/dotfiles/vim/.vimrc ~/.vimrc
tmux2git:
rm -rf ~/Documents/dev/dotfiles/tmux/.tmux.conf
cp ~/.tmux.conf ~/Documents/dev/dotfiles/tmux/
git2tmux:
rm -r ~/.tmux.conf
cp ~/Documents/dev/dotfiles/tmux/.tmux.conf ~/.tmux.conf
ideavim2git:
rm -rf ~/Documents/dev/dotfiles/idea/.ideavimrc
cp ~/.ideavimrc ~/Documents/dev/dotfiles/idea/
git2ideavim:
rm -rf ~/.ideavimrc
cp ~/Documents/dev/dotfiles/idea/.ideavimrc ~/.ideavimrc
augmentskill2git:
rm -rf ~/Documents/dev/dotfiles/agent/skills/
cp -R ~/.augment/skills ~/Documents/dev/dotfiles/agent/skills
git2augmentkill:
rm -rf ~/.augment/skills
cp -R ~/Documents/dev/dotfiles/agent/skills ~/.augment/skills
opencode2git:
rm -rf ~/Documents/dev/dotfiles/agent/skills/
cp -R ~/.opencode/skills ~/Documents/dev/dotfiles/agent/skills
git2opencode:
rm -rf ~/.opencode/skills
cp -R ~/Documents/dev/dotfiles/agent/skills/ ~/.opencode/skills