https://github.com/gitii/config
A collection of configuration files and setup scripts for my personal usage.
https://github.com/gitii/config
Last synced: 4 months ago
JSON representation
A collection of configuration files and setup scripts for my personal usage.
- Host: GitHub
- URL: https://github.com/gitii/config
- Owner: Gitii
- Created: 2022-02-19T11:41:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-01T12:24:51.000Z (about 2 years ago)
- Last Synced: 2025-03-10T23:28:52.936Z (4 months ago)
- Language: PowerShell
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gitii's config files
A template repository that contains settings, config files and scripts that I use in my personal projects.
## Getting started
Execute the boostrap script in the project root folder:
```powershell
iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/Gitii/config/main/install.ps1'))
```This command will download the bootstrap powershell script and store it in `.config/bootstrap.ps1`.
Installation then continues by executing `bootstrap.ps1`.
That script will download this repository (as zip archive) and put the contents of the `templates` folder in the working directory of the shell (that executed the command above).## Update
To update to the latest `templates` version, execute the script (from the root folder of the project):
```powershell
pwsh ./.config/bootstrap.ps1
```