https://github.com/emcorrales/dotfiles
💻 My dotfiles.
https://github.com/emcorrales/dotfiles
bash bash-profile bashrc dircolors dotfiles gitignore tmux typescript typescript-setup vim vim-configuration vimrc zsh zshrc
Last synced: 3 months ago
JSON representation
💻 My dotfiles.
- Host: GitHub
- URL: https://github.com/emcorrales/dotfiles
- Owner: emcorrales
- License: mit
- Created: 2017-07-19T09:35:38.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2026-04-03T12:49:26.000Z (3 months ago)
- Last Synced: 2026-04-03T15:57:07.850Z (3 months ago)
- Topics: bash, bash-profile, bashrc, dircolors, dotfiles, gitignore, tmux, typescript, typescript-setup, vim, vim-configuration, vimrc, zsh, zshrc
- Language: Shell
- Homepage:
- Size: 163 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Dot Files
======
My configuration files for Mac and Linux. This project was built for my personal
use. You may take whatever you want but at your own risk. I cannot guarantee
that it won't mess up your configurations. This has been tested to work on OSX
High Sierra and Ubuntu 16.04.
Setup SSH keys
------
```bash
ssh-keygen -t ed25519 -C "contact@emcorrales.com"
```
Copy ssh keys to clipboard.
- MacOS:
```bash
pbcopy < ~/.ssh/id_ed25519.pub
```
- Linux:
```bash
cat ~/.ssh/id_ed25519.pub | xclip
```
- Windows (Git Bash/WSL):
```bash
cat ~/.ssh/id_ed25519.pub | clip
```
Installation
------
Execute the following commands in your terminal.
```bash
bash -c "$(curl -fsSL https://raw.githubusercontent.com/emcorrales/dotfiles/master/scripts/setup/dotfiles.sh)"
```