Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/klane/dotfiles
System configuration files
https://github.com/klane/dotfiles
dotbot dotfiles homebrew scoop
Last synced: 15 days ago
JSON representation
System configuration files
- Host: GitHub
- URL: https://github.com/klane/dotfiles
- Owner: klane
- Created: 2018-05-04T14:17:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T08:57:20.000Z (over 1 year ago)
- Last Synced: 2024-04-16T04:08:01.586Z (7 months ago)
- Topics: dotbot, dotfiles, homebrew, scoop
- Language: Shell
- Homepage:
- Size: 545 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Test Status](https://github.com/klane/dotfiles/workflows/Format/badge.svg)](https://github.com/klane/dotfiles/actions)
# Installation
## macOS
```bash
# set DIR to desired repo location
git clone https://github.com/klane/dotfiles $DIR
cd $DIR/scripts
source install.sh
```## Windows
### PowerShell
```powershell
$Script = Invoke-WebRequest https://raw.githubusercontent.com/klane/dotfiles/master/scripts/install.ps1
Invoke-Expression $($Script.Content) # MSYS2 Bash shell will open
```### Bash
```bash
pacman -Syu # close MSYS2
# start MSYS2 with msys2.exe in installation directory, not 'current' junction
# follow macOS instructions above
```## SSH
Create a new SSH key on GitHub with the contents of ~/.ssh/github.key.pub.
Execute the following command to authenticate the SSH key.```bash
ssh -T [email protected]
```