https://github.com/nxhung2304/dotfiles
My personal dotfiles on macos
https://github.com/nxhung2304/dotfiles
dotfiles macos nvim tmux wezterm
Last synced: 3 months ago
JSON representation
My personal dotfiles on macos
- Host: GitHub
- URL: https://github.com/nxhung2304/dotfiles
- Owner: nxhung2304
- Created: 2025-01-16T03:19:30.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-08-07T02:43:54.000Z (11 months ago)
- Last Synced: 2025-08-07T04:24:56.678Z (11 months ago)
- Topics: dotfiles, macos, nvim, tmux, wezterm
- Language: Lua
- Homepage:
- Size: 3.93 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Requiments
- nvim 0.11
- tmux
- wezterm
## Getting started
1. Asdf
- Manage all your runtime versions with one tool!
- Installing for macOS:
```
brew install asdf
```
- Add asdf to zsh shell
```
export PATH="${ASDF_DATA_DIR:-$HOME/.asdf}/shims:$PATH"
```
- Source zsh file to load new env
```
source ~/.zshrc
```
2. Ruby
- Install ruby plugin for asdf version manager
```
asdf plugin add ruby https://github.com/asdf-vm/asdf-ruby.git
```
- Install a specify ruby version
```
asdf install ruby x.x.x
```
- Set a local ruby version
```
asdf local ruby x.x.x
```
- Install a ruby version
- Give permissions to `script.sh`
```
chmod +x script.sh
```
- Run script for automatic setup:
```
./script.sh
```
- Setup env secret:
Copy .env.sample to ~/.env and setup env variables
```
cp .env.sample ~/.env
vi ~/.env
```
## Troubleshooting