https://github.com/samandmoore/dotfiles
my personal Linux/macOS config files
https://github.com/samandmoore/dotfiles
brewfile dotfiles tmux vimrc
Last synced: 3 months ago
JSON representation
my personal Linux/macOS config files
- Host: GitHub
- URL: https://github.com/samandmoore/dotfiles
- Owner: samandmoore
- License: mit
- Created: 2013-11-23T18:08:46.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2025-07-06T16:45:53.000Z (3 months ago)
- Last Synced: 2025-07-06T17:32:26.262Z (3 months ago)
- Topics: brewfile, dotfiles, tmux, vimrc
- Language: Shell
- Homepage:
- Size: 2.29 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotfiles
To get started run
```bash
wget -qO- https://raw.githubusercontent.com/samandmoore/dotfiles/refs/heads/main/script/boot.sh | bash
```From there, use `./script/setup.sh` to apply updates.
## Local customizations supported
- `~/.bashrc.local`
- `~/.gitconfig.local`
- `~/.tmux.conf.local`## linux things
customizations are in `etc/linux`
## macOS things
customizations are in `etc/macos`
Change your computer name and network sharing name with this script if
you want.```
export NEW_NAME="My-Cool-Mac"
scutil --set ComputerName "$NEW_NAME"
scutil --set LocalHostName "$NEW_NAME"
scutil --set HostName "$NEW_NAME"
unset NEW_NAME
```