-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwindows.yaml
More file actions
69 lines (60 loc) · 1.99 KB
/
windows.yaml
File metadata and controls
69 lines (60 loc) · 1.99 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
68
69
# windows.yaml
# Dotbot configuration file for Windows setup
- defaults:
link:
create: true
relink: true
- clean: ["~"]
- link:
# Starship prompt configuration
~/.config/starship.toml: starship/starship.toml
# Neovim configuration
~/AppData/Local/nvim: nvim
# PowerShell profile
~/Documents/PowerShell/Microsoft.PowerShell_profile.ps1:
path: hypershell/Microsoft.PowerShell_profile.ps1
force: true
# Git configuration
~/.gitconfig: gitconfig
# Fastfetch configuration (Windows path)
~/AppData/Roaming/fastfetch/config.jsonc: fastfetch/config.jsonc
- shell:
# Ensure fastfetch config directory exists on Windows
- command:
powershell.exe -NoProfile -Command "New-Item -ItemType Directory -Force -Path \"$Env:APPDATA\\fastfetch\" |
Out-Null"
stdin: true
stdout: true
stderr: true
description: Create fastfetch config directory
- shell:
# Run the Windows setup script
- command: powershell.exe -ExecutionPolicy Bypass -File ./hypershell/setup-windows.ps1
stdin: true
stdout: true
stderr: true
description: Running Windows setup script
# Install Rust components
- command: rustup component add rls rust-analysis rust-src
stdin: true
stdout: true
stderr: true
description: Installing Rust components
# Install fastfetch (silent; ignore if already present)
- command: powershell.exe -NoProfile -Command "winget install --id fastfetch-cli.fastfetch -e --silent; exit 0"
stdin: true
stdout: true
stderr: true
description: Installing fastfetch via winget
# Install pynvim for Neovim Python support
- command: pip install pynvim
stdin: true
stdout: true
stderr: true
description: Installing pynvim
# Set WSL 2 as the default version
- command: wsl --set-default-version 2
stdin: true
stdout: true
stderr: true
description: Setting WSL 2 as the default version