https://github.com/lowmess/dotfiles
https://github.com/lowmess/dotfiles
dot-files
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lowmess/dotfiles
- Owner: lowmess
- Created: 2016-12-12T19:08:40.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2025-03-24T01:12:55.000Z (7 months ago)
- Last Synced: 2025-04-15T01:07:12.414Z (6 months ago)
- Topics: dot-files
- Language: Shell
- Size: 108 KB
- Stars: 31
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Set up a new machine
First things first, let's use `zsh`.
```bash
# set default shell to zsh
chsh -s $(which zsh)
```After this, we'll need to restart our computer. When it's back up, let's install `git`.
```bash
# assuming macOS
xcode-select --install
```Now let's clone or download the repo to `~/dotfiles/`.
```bash
cd ~ && git clone https://github.com/lowmess/dotfiles.git
```Finally, we can run the install script. It's not an executable because I'm lazy.
```bash
cd ~/dotfiles && sh ./install.sh
```The install script will install tools with `homebrew`, install apps with `cask`, install `nvm` and global node packages, and extend default configs with our own.