-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
36 lines (26 loc) · 780 Bytes
/
Copy pathjustfile
File metadata and controls
36 lines (26 loc) · 780 Bytes
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
# --- Configuration Variables ---
TMUX_TPM_ARCHIVE := "https://github.com/tmux-plugins/tpm/archive/master.tar.gz"
HOME_DIR := env_var("HOME")
# --- Configuration Variables ---
default:
@just --list
tmux-tpm-fetch:
@echo "Fetching TPM archive..."
mkdir -p {{HOME_DIR}}/.tmux/plugins/tpm
curl -L {{TMUX_TPM_ARCHIVE}} | tar -xz -C {{HOME_DIR}}/.tmux/plugins/tpm --strip-components=1
tmux-add-config:
stow -t ~ tmux
clangd-add-config:
stow -t ~ clangd
prettier-add-config:
stow -t ~ prettier
cmake-format-add-config:
stow -t ~ cmake-format
pyright-install:
uv tool install pyright
ruff-install:
uv tool install ruff
cmakelang-install:
uv tool install --with pyyaml cmakelang
status:
@ls -la {{HOME_DIR}} | grep "\->"