Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aarsxx/dotfiles
🏡 Dotfiles for my Mac & Linux machines.
https://github.com/aarsxx/dotfiles
dotfiles linux macos shell
Last synced: 21 days ago
JSON representation
🏡 Dotfiles for my Mac & Linux machines.
- Host: GitHub
- URL: https://github.com/aarsxx/dotfiles
- Owner: aarsxx
- License: mit
- Created: 2019-05-19T11:42:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-21T07:00:58.000Z (5 months ago)
- Last Synced: 2024-10-12T09:45:10.967Z (about 1 month ago)
- Topics: dotfiles, linux, macos, shell
- Language: Shell
- Homepage:
- Size: 6.41 MB
- Stars: 7
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dotfiles
Presets that make anywhere feel like `$HOME`
## Getting Started
### Install Oh My Zsh
Install Zsh and [Oh My Zsh](https://ohmyz.sh/).
```sh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"# Inspect the install script
git clone https://github.com/ohmyzsh/ohmyzsh.git
vim ./tools/install.sh# Change the default shell to /bin/zsh
sudo chsh -s /bin/zsh "$USER"
```### Generate SSH Key
Use `ssh-keygen` to generate a new SSH key.
```sh
# Set to username@hostname[.home|local]
read KEY_COMMENTssh-keygen -o -a 256 -t ed25519 -C "$KEY_COMMENT"
```#### Add SSH Key to GitHub
You must add the new SSH key to GitHub in order to clone this repository and private repositories. Visit https://github.com/settings/keys or use the [GitHub CLI](https://cli.github.com/manual/) to add the key.
```sh
# Don't add your SSH key yet!
gh auth login -s write:public_key -s codespacegh ssh-key add ~/.ssh/id_ed25519.pub --title "$KEY_COMMENT"
```### Install (these) Dotfiles
Clone this repo and install my dotfiles using `./install.sh`.
```sh
git clone [email protected]:andikaleonardo/dotfiles.gitcd dotfiles
./install.sh
```