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 ~
- Host: GitHub
- URL: https://github.com/andrasmaroy/dotfiles
- Owner: andrasmaroy
- License: mit
- Created: 2015-07-27T08:21:19.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2025-03-03T09:39:24.000Z (over 1 year ago)
- Last Synced: 2025-03-03T10:34:03.089Z (over 1 year ago)
- Topics: ansible, bash-profile, dotfiles, gitconfig, tmux-configs, vimrc
- Language: Vim Script
- Homepage:
- Size: 423 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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
```