https://github.com/maxonchickdev/dotfiles
Dotfiles by maxondev
https://github.com/maxonchickdev/dotfiles
autopairs bufferline colorscheme comments dressing fine-cmdline lazygit lua mason nvim session
Last synced: 5 months ago
JSON representation
Dotfiles by maxondev
- Host: GitHub
- URL: https://github.com/maxonchickdev/dotfiles
- Owner: maxonchickdev
- License: mit
- Created: 2024-12-28T12:41:50.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-28T18:35:41.000Z (5 months ago)
- Last Synced: 2025-07-28T20:39:10.249Z (5 months ago)
- Topics: autopairs, bufferline, colorscheme, comments, dressing, fine-cmdline, lazygit, lua, mason, nvim, session
- Language: Shell
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotfiles
1. Install Apple's Command Line Tools, which are prerequisites for Git and Homebrew
```zsh
xcode-select --install
```
2. Clone repo into new hidden directory
```zsh
# Use SSH (if set up...)
git clone git@github.com:maxonchickdev/dotfiles.git
# Use HTTPS
git clone https://github.com/maxonchickdev/dotfiles.git
```
3. Create symlinks in the Home directory to the real file in the repo
```zsh
ln -s ~/dotfiles/.zshrc ~/.zshrc
ln -s ~/dotfiles/.gitconfig ~/.gitconfig
ln -s ~/dotfiles/.nvmrc ~/.nvmrc
```
4. Install nvm
```zsh
# Using curl
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
# Or wget
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
```
5. Install zsh
```zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
source ~/.zshrc
```
6. Install Homebrew, followed by the software listed in the Brewfile
```zsh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew bundle --file ~/Brewfile
```
7. Setup mac os settings
```zsh
chmod +x ./os.sh
sudo ./os.sh
```