You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
371 B
14 lines
371 B
4 years ago
|
- hosts: all
|
||
|
tasks:
|
||
|
- group_by: key=os_{{ ansible_distribution }}
|
||
|
tags: always
|
||
|
|
||
|
- hosts: os_MacOSX
|
||
|
tasks:
|
||
|
- file: path=~/Library/KeyBindings state=directory
|
||
|
- name: Symlink Emacs-style keybindings for OS X
|
||
|
file:
|
||
|
src: ~/.dotfiles/osx/DefaultKeyBinding.dict
|
||
|
dest: ~/Library/KeyBindings/DefaultKeyBinding.dict
|
||
|
state: link
|