Find a file
Oliver Davies 776772a952 chore(nvim): disable auto-formatting
This is tricky when working on projects that use different formatting
and coding styles (e.g. Drupal and Symfony), and on projects that
haven't had code formatting run on them before and making a small change
causes a large number of changes to be staged.

I'll experiment with formatting code within a range, or toggling
auto-formatting per project. Maybe something similar to what @wincent
showed in https://youtu.be/ifA8iw42vwI.
2022-01-20 15:50:52 +00:00
bin/bin chore(tmux): search in ~/Documents/Books 2021-09-24 12:54:07 +01:00
roles chore(nvim): disable auto-formatting 2022-01-20 15:50:52 +00:00
.gitignore chore(nvim): ignore packer_compiled.lua 2021-12-23 14:53:29 +00:00
ansible.cfg refactor: combine with Ubuntu Provisioning repo 2022-01-06 01:04:14 +00:00
hosts.ini refactor: combine with Ubuntu Provisioning repo 2022-01-06 01:04:14 +00:00
main.yaml chore: allow for skipping roles by tag 2022-01-06 07:26:35 +00:00
README.md docs: update README 2022-01-10 22:43:41 +00:00
requirements.yml chore: add requirements.yml 2022-01-06 08:08:38 +00:00
stylua.toml style: format lua with StyLua 2022-01-09 00:41:55 +00:00

dotfiles

My personal dotfiles, originally for macOS only but currently being adapted for use on Linux based systems (Ubuntu and Pop!_OS in particular) where needed.

The repository is powered using Ansible, with each software package and its associated configuration within separate roles within the roles directory.

The neovim role, for example, has its own tasks in roles/neovim/tasks/main.yaml and files in roles/neovim/files.

Files within a role are typically symlinked into their required destination so that they will be automatically updated without needing to run the playbook again.

For example, the files and directories within the neovim role are symlinked into ~/.config/nvim.

Requirements

Installation

$ ansible-playbook main.yaml --ask-become-pass

Inspiration