Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulfioravanti/dotfiles
My developer-focused config for Mac
https://github.com/paulfioravanti/dotfiles
asdf dotfiles homebrew iterm2 karabiner macos oh-my-zsh rcm shell tmux ultisnip-snippets ultisnips vim zsh
Last synced: 18 days ago
JSON representation
My developer-focused config for Mac
- Host: GitHub
- URL: https://github.com/paulfioravanti/dotfiles
- Owner: paulfioravanti
- License: mit
- Created: 2014-07-13T12:19:43.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-09-30T23:16:14.000Z (about 1 month ago)
- Last Synced: 2024-10-04T04:21:13.527Z (about 1 month ago)
- Topics: asdf, dotfiles, homebrew, iterm2, karabiner, macos, oh-my-zsh, rcm, shell, tmux, ultisnip-snippets, ultisnips, vim, zsh
- Language: Vim Script
- Homepage:
- Size: 1.64 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## dotfiles
My configuration files for web development, and scripts to bootstrap a macOS
machine.Set up for use with [rcm][rcm].
## Install
For a new macOS install, open up the Terminal application.
### New Machines
For new machines, where no Github account has been logged into:
```txt
git clone https://github.com/paulfioravanti/dotfiles.git ~/.dotfiles
```On a new machine, running the `git` command will prompt you to install the
XCode Command Line Tools.### Established Machines
```txt
git clone [email protected]:paulfioravanti/dotfiles.git ~/.dotfiles
```## Bootstrap New Machine
### Pre-Setup
Before setting up a development environment on a new machine:
- Install [XCode][xcode] (if you run into any other issues that would
actually necessitate installing it or you are going to do Mac/iOS development)### Run Bootstrap Script
This script updates macOS to the latest version, installs XCode command line
tools, and gets the machine in a state where other developer tools can be
installed.```sh
source ~/.dotfiles/bootstrap.sh
```### Run Setup Script
This script will install a bunch of developer-related tools.
```sh
source ~/.dotfiles/setup.sh
```Once setup has finished, restart computer and run the `update` function that
is contained in the `zshrc` file (zsh should have been installed during the
bootstrap process):```sh
update
```## Generate Dotfiles
Generate dotfile directory, excluding (`-x`) files that don't need to be
symlinked to the home directory (this step will be performed during the
bootstrap process above):#### `bash`:
```sh
rcup -x README.md -x LICENSE.txt -x setup.sh -x config.sh -x '*:vim:setup.sh' -x '*:tmux:setup.sh' -x '*:oh-my-zsh:setup.sh' -x macos -x asdf -x 'Library/Services'
```#### `zsh`:
```sh
rcup -x README.md -x LICENSE.txt -x setup.sh -x config.sh -x \*:vim:setup.sh -x \*:tmux:setup.sh -x \*:oh-my-zsh:setup.sh -x macos -x asdf -x 'Library/Services'
```## Regenerate Dotfiles
```sh
rcup
```Once initial setup has been run, the `.rcrc` config file for `rcup` will have
been created that contains the exclusions, so only `$ rcup` will need to be run
in the future (unless more files to be excluded from being symlinked are added).## Setup Scripts
Regenerate config for all apps and libraries under dotfiles (all of these
scripts get run during the bootstrap process):```sh
source ~/.dotfiles/config.sh
```Or individually (choose relevant script to regenerate config):
```sh
source ~/.dotfiles/macos/homebrew/config.sh
source ~/.dotfiles/macos/iterm2/config.sh
```## Social
[![Contact][twitter-badge]][twitter-url]
[![Stack Overflow][stackoverflow-badge]][stackoverflow-url][Homebrew]: https://brew.sh/
[rcm]: https://github.com/thoughtbot/rcm
[stackoverflow-badge]: http://stackoverflow.com/users/flair/567863.png
[stackoverflow-url]: http://stackoverflow.com/users/567863/paul-fioravanti
[twitter-badge]: https://img.shields.io/badge/contact-%40paulfioravanti-blue.svg
[twitter-url]: https://twitter.com/paulfioravanti
[xcode]: https://itunes.apple.com/au/app/xcode/id497799835?mt=12