Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timss/dotfiles
Assorted dotfiles
https://github.com/timss/dotfiles
dotfiles linux rice
Last synced: about 2 months ago
JSON representation
Assorted dotfiles
- Host: GitHub
- URL: https://github.com/timss/dotfiles
- Owner: timss
- Created: 2013-04-11T16:07:59.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-11-13T09:14:31.000Z (about 2 months ago)
- Last Synced: 2024-11-13T10:24:32.372Z (about 2 months ago)
- Topics: dotfiles, linux, rice
- Language: Vim Script
- Homepage:
- Size: 235 KB
- Stars: 16
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Dotfiles
========Assorted dotfiles.
Vim
---My Vim configuration can be found here:
[timss/vimconf](https://github.com/timss/vimconf)Scripts
-------Some scripts can be found in [timss/bin](https://github.com/timss/bin), or over
at my [gist](https://gist.github.com/timss).Ansible
-------Automated installation of dotfiles and other stuff.
```sh
# You probably want to do this in a virtual environment
$ apt install python3-venv
$ python3 -m venv path/to/venv
$ source path/to/venv/bin/activate # or activate.fish
$ pip install -U pip# Initial setup
$ cd ansible/
$ pip install -r requirements.txt
$ sudo mkdir -p /var/log/ansible/dotfiles
$ sudo chown -R $USER:$USER /var/log/ansible# Either specify a host, or automatically use localhost
# Playbook names should be self-explanatory
$ ansible-playbook -i myhost, .yml
$ ansible-playbook .yml
```