https://github.com/jyeary/windows-dotfiles
My personal dotfiles for Windows
https://github.com/jyeary/windows-dotfiles
Last synced: 4 months ago
JSON representation
My personal dotfiles for Windows
- Host: GitHub
- URL: https://github.com/jyeary/windows-dotfiles
- Owner: jyeary
- License: mit
- Created: 2020-07-15T18:24:21.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-07T12:36:39.000Z (over 2 years ago)
- Last Synced: 2024-08-14T07:06:38.138Z (8 months ago)
- Language: PowerShell
- Size: 21.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - jyeary/windows-dotfiles - My personal dotfiles for Windows (PowerShell)
README
# windows-dotfiles
My personal dotfiles for Windows**NOTE:** Use at your own risk if you don't understand what the files are doing. This is a Work In Progress (WIP)
## Installation
1. Open an Administrative PowerShell2. You must set the following in Powershell to execute scripts.
```
Set-ExecutionPolicy Bypass -Scope Process -Force
```
3. Run `bootstrap.ps1` script.## Add Applications with Chocolatey
Run `choco-install-apps.ps1` script.
## Set Windows Defaults
Run `windows.ps1` script.
## Git Credentials
I am using a script as shown below called `git-crendentials.ps1` to set up my git configuration. It is not included in files because I don't want people checking in code with my information. Please modify it to suit your needs.
```powershell
# Git credentials
$env:GIT_AUTHOR_NAME="jyeary"
$env:GIT_COMMITTER_NAME=$env:GIT_AUTHOR_NAME
git config --global user.name $env:GIT_AUTHOR_NAME
$env:GIT_AUTHOR_EMAIL="[email protected]"
$env:GIT_COMMITTER_EMAIL=$env:GIT_AUTHOR_EMAIL
git config --global user.email $env:GIT_AUTHOR_EMAIL
```