Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/palcu/dotfiles
My precious configs
https://github.com/palcu/dotfiles
ansible dotfiles zsh
Last synced: about 2 months ago
JSON representation
My precious configs
- Host: GitHub
- URL: https://github.com/palcu/dotfiles
- Owner: palcu
- License: mit
- Created: 2012-01-20T13:02:49.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-09-12T21:15:59.000Z (3 months ago)
- Last Synced: 2024-09-13T10:40:27.526Z (3 months ago)
- Topics: ansible, dotfiles, zsh
- Language: Shell
- Homepage: https://blog.palcu.ro/2014/06/dotfiles-and-dev-tools-provisioned-by.html
- Size: 707 KB
- Stars: 86
- Watchers: 4
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - palcu/dotfiles - My precious configs (ansible)
- awesome-list-ansible - dotfiles
README
# Dotfiles by Alex Palcuie
Hacking like a geek:
* the `playbooks` folder contains Ansible that provisions a machine with apps and configs
* I use the Fish shell
* my main machine is a Mac, I have a work dev Debian machine, and my server is running Ubuntu
* VIM provisioned with Vundle## Setup for a new Mac machine
1. Install XCode tools using `xcode-select --install`
2. Install [Brew](http://brew.sh/)
3. Install Ansible using Brew `brew install ansible`
4. As a convention `~/dotfiles` should be this repo```bash
git clone https://github.com/palcu/dotfiles.git ~/dotfiles
```
5. Install [XQuartz](https://xquartz.macosforge.org/landing/)
6. Run the Ansible playbook for Mac```bash
./launch
```## Setup for a new Linux machine
We need a version of Ansible greater than 2.0.
```bash
sudo apt-add-repository ppa:ansible/ansible
sudo apt-get update
sudo apt-get install ansible software-properties-common git
git clone https://github.com/palcu/dotfiles.git ~/dotfiles
cd ~/dotfiles/playbooks
./launch
```## Sources of inspiration
Thank you for all the people who've published their useful configs.
* http://dotfiles.github.io
* https://github.com/holman/dotfiles
* https://github.com/mgax/dotfiles
* https://github.com/razvand/snippets
* https://github.com/pivotal/vim-config
* https://github.com/pivotal/dotfiles