-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
31 lines (26 loc) · 907 Bytes
/
Makefile
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
default:update link install
clean:
find ~ -xtype l -print -delete
link:
stow --target ~ --restow `ls -d */ | grep -v "^\."` 2> >(grep -v 'BUG in find_stowed_path? Absolute/relative mismatch' 1>&2)
update:
git submodule sync --recursive
git submodule update --init --recursive
git submodule update --recursive --remote
install:
~/.fzf/install --all --no-update-rc --no-completion --no-bash --no-fish
gh extension install github/gh-copilot || true
asdf plugin-add protonge && asdf install protonge latest || true
nvim --headless \
+MasonUpdate \
+MasonToolsClean \
+MasonToolsInstallSync \
+MasonToolsUpdateSync \
+TSUpdateSync \
+UpdateRemotePlugins \
+'helptags ALL' \
+qall
uninstall:
~/.fzf/uninstall
gh extension remove github/gh-copilot || true
stow --target ~ --delete `ls -d */ | grep -v "^\."` 2> >(grep -v 'BUG in find_stowed_path? Absolute/relative mismatch' 1>&2)