Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (over 12 years ago)
- Default Branch: main
- Last Pushed: 2024-10-02T00:51:51.000Z (3 months ago)
- Last Synced: 2024-10-20T11:42:39.573Z (2 months ago)
- Topics: dotfiles
- Language: Jsonnet
- Homepage:
- Size: 322 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
```