https://github.com/akshayjshah/dotfiles
Akshay's dotfiles.
https://github.com/akshayjshah/dotfiles
dotfiles
Last synced: 2 months ago
JSON representation
Akshay's dotfiles.
- Host: GitHub
- URL: https://github.com/akshayjshah/dotfiles
- Owner: akshayjshah
- Created: 2012-04-30T18:05:36.000Z (about 13 years ago)
- Default Branch: main
- Last Pushed: 2024-12-30T06:34:47.000Z (5 months ago)
- Last Synced: 2025-03-18T21:52:04.523Z (2 months ago)
- Topics: dotfiles
- Language: Jsonnet
- Homepage:
- Size: 326 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
Configuration for a terminal-centric development environment on MacOS.
Dotfile management is kept deliberately simple: make `$HOME` a git repository,
ignore everything except dotfiles, and manage install scripts with a simple
Makefile.Before any of this works, install the XCode command-line tools (running `git`
in a Terminal will open an installation prompt) and upload a new SSH key to
Github.```
cd ~
git init -b main .
git remote add origin https://github.com/akshayjshah/dotfiles.git
git fetch
git reset --mixed origin/main
make setup
```