-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
67 lines (58 loc) · 1.65 KB
/
config.toml
File metadata and controls
67 lines (58 loc) · 1.65 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[settings]
# paranoid = true
env_file = ".env"
experimental = true
idiomatic_version_file_enable_tools = ["node"]
npm.bun = true
node.compile = false
node.gpg_verify = true
pipx.uvx = true
python.uv_venv_auto = true
python.uv_venv_create_args = ["--seed"]
terminal_progress = false
lockfile = true
[hooks]
cd = { script = 'set_terminal_title', shell = "zsh" }
# leave = { script = "reset_terminal_title", shell = "zsh" }
[tools]
rust = "nightly"
cargo-binstall = "latest"
node = { version = "25", postinstall = "mise run global-install-packages-npm" }
python = { version = "3.13", postinstall = "mise run global-install-packages-python" }
ruby = { version = "latest", postinstall = "mise run global-install-packages-ruby" }
bun = "latest"
go = "latest"
lua = "5.1"
uv = "latest"
vault = "latest"
delta = "latest"
stylua = "latest"
prettier = "latest"
tree-sitter = "latest"
markdownlint-cli2 = "latest"
"npm:@mermaid-js/mermaid-cli" = "latest"
"npm:mcp-hub" = "latest"
"npm:@github/copilot" = "latest"
opencode = "latest"
[tasks.global-install-packages-npm]
description = "Install global NPM packages"
alias = "gin"
run = ["npm install -g npm@latest", "npm install -g neovim@latest"]
[tasks.global-install-packages-python]
description = "Install global Python packages"
alias = "gip"
run = ["uv tool install --upgrade pynvim"]
[tasks.global-install-packages-ruby]
description = "Install global Ruby gems"
alias = "gir"
run = ["gem install neovim"]
[tasks.global-install-packages-all]
description = "Install all global packages"
alias = "gi"
run = [
{ tasks = [
"global-install-packages-npm",
"global-install-packages-python",
"global-install-packages-ruby",
] },
]