An open API service indexing awesome lists of open source software.

https://github.com/andrasmaroy/dotfiles

Config files from ~
https://github.com/andrasmaroy/dotfiles

ansible bash-profile dotfiles gitconfig tmux-configs vimrc

Last synced: 5 months ago
JSON representation

Config files from ~

Awesome Lists containing this project

README

          

# dotfiles

Config files from ~

## Usage

These configuration files are managed with [Ansible](https://www.ansible.com/), to begin a bit of setup is needed:

```bash
pip3 install --user pipenv
pipenv install
pipenv run ansible-galaxy collection install community.general
```

This assumes Python is installed, and submodules are up to date, for more details see [bootstrap.sh](bootstrap.sh).

Afterwards to apply:
```bash
# For dry run
pipenv run ansible-playbook --check --diff --verbose --connection=local --inventory 127.0.0.1, site.yml
# Actual run
pipenv run ansible-playbook --connection=local --inventory 127.0.0.1, --ask-become-pass site.yml
```