-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.json
More file actions
49 lines (49 loc) · 1.52 KB
/
Copy pathtools.json
File metadata and controls
49 lines (49 loc) · 1.52 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
46
47
48
49
{
"system_package": [
"fzf",
"highlight",
"jq",
"python3-pip",
{"apt-get": "python3-venv"},
"hashcat",
"nmap",
"golang",
"ripgrep",
{"cmd": "secret-tool", "apt-get": "libsecret-tools", "dnf": "libsecret"},
"stow",
"tmux",
"zoxide"
],
"snap_classic": [],
"brew": [],
"curl_install": [
{
"cmd": "nvim",
"install": "curl -LsSf https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.appimage -o /tmp/nvim.appimage",
"post_install": [
"chmod +x /tmp/nvim.appimage",
"mv /tmp/nvim.appimage $HOME/.local/bin/nvim"
],
"update": "curl -LsSf https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.appimage -o /tmp/nvim.appimage",
"post_update": [
"chmod +x /tmp/nvim.appimage",
"mv /tmp/nvim.appimage $HOME/.local/bin/nvim"
]
},
{
"cmd": "uv",
"install": "curl -LsSf https://astral.sh/uv/install.sh | sh",
"update": "uv self update"
},
{
"cmd": "ruff",
"install": "uv tool install ruff",
"update": "uv tool upgrade ruff"
},
{
"cmd": "rdap",
"install": "go install github.com/openrdap/rdap/cmd/rdap@master",
"update": "go install github.com/openrdap/rdap/cmd/rdap@master"
}
]
}