https://github.com/simoncw/dotfiles
The best dotfiles on the internet FULLSTOP
https://github.com/simoncw/dotfiles
dotfiles macos neovim tmux
Last synced: 11 months ago
JSON representation
The best dotfiles on the internet FULLSTOP
- Host: GitHub
- URL: https://github.com/simoncw/dotfiles
- Owner: SimonCW
- License: mit
- Created: 2021-12-15T10:03:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-28T07:34:35.000Z (about 1 year ago)
- Last Synced: 2025-05-17T06:40:40.671Z (about 1 year ago)
- Topics: dotfiles, macos, neovim, tmux
- Language: Shell
- Homepage:
- Size: 271 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
My dotfiles. Uses GNU Stow to create symlinks.
## Create symlinks
To "install" all dotfiles use the make file:
```bash
make
```
Or, stow all directories:
```bash
stow --target=$HOME */
```
## Working with the private submodule
Upon first clone init submodules:
```Bash
git submodule init
```
Update Submodules:
```bash
git submodule update --rebase --remote
```
Modify file in Submodule:
```bash
cd submodule_dir
# modify file
git add .
git commit -m "..."
cd ..
git add .
git commit -m "..."
```
Notes on `terminfo`:
**Update 2024-01-09**
Since macOS 14 (Sonoma) the terminfo hack isn't necessary anymore, so I removed the file.
This was necessary to get the colors right in tmux, neovim, alacritty on my MacOS (tmux-256color in .tmux.conf). See this for context https://gpanders.com/blog/the-definitive-guide-to-using-tmux-256color-on-macos/
You can check with the `./24-bit-color.sh` script.