https://github.com/iamgio/dotfiles
https://github.com/iamgio/dotfiles
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/iamgio/dotfiles
- Owner: iamgio
- Created: 2025-10-06T10:39:07.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2026-07-13T23:19:07.000Z (25 days ago)
- Last Synced: 2026-07-18T12:33:38.557Z (21 days ago)
- Language: Shell
- Size: 124 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dotfiles
My personal dotfiles and setup scripts. Mainly for macOS. Also Linux-compatible, with limitations.
With git (preferred for sync):
```shell
cd ~
git clone https://github.com/iamgio/dotfiles.git
cd dotfiles
chmod +x install.sh
./install.sh
```
With cURL:
```shell
cd ~
curl -L https://github.com/iamgio/dotfiles/archive/refs/heads/main.zip -o dotfiles.zip
unzip dotfiles.zip && rm dotfiles.zip && mv dotfiles-main dotfiles
cd dotfiles
chmod +x install.sh
./install.sh
```