|
1 | | -Role Name |
2 | | -========= |
| 1 | +# superlumic-sublimetext |
3 | 2 |
|
4 | | -A brief description of the role goes here. |
| 3 | +Ansible role to install and configure Sublime Text 3 on OSX. This role is part of the Superlumic project that aims to simplify repeat computer setups on OSX, 10.10 and up. |
5 | 4 |
|
6 | | -Requirements |
7 | | ------------- |
| 5 | +## Requirements |
8 | 6 |
|
9 | | -Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. |
| 7 | +* OSX 10.10 or 10.11 |
10 | 8 |
|
11 | | -Role Variables |
12 | | --------------- |
| 9 | +## Role variables |
13 | 10 |
|
14 | | -A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. |
| 11 | +Minimal set: |
15 | 12 |
|
16 | | -Dependencies |
17 | | ------------- |
| 13 | +```yaml |
| 14 | +sublime_packages: |
| 15 | + - dest: "Theme - Soda" |
| 16 | + repo: "https://github.com/buymeasoda/soda-theme.git" |
| 17 | + version: "master" |
| 18 | + - dest: "Base16" |
| 19 | + repo: "https://github.com/chriskempson/base16-textmate.git" |
| 20 | + version: "master" |
| 21 | +sublime_text_color_scheme: "Packages/Base16/base16-eighties.dark.tmTheme" |
| 22 | +sublime_text_theme: "Soda Dark 3.sublime-theme" |
| 23 | +``` |
18 | 24 |
|
19 | | -A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. |
| 25 | +More extensive set: |
20 | 26 |
|
21 | | -Example Playbook |
22 | | ----------------- |
| 27 | +```yaml |
| 28 | + - sublime_packages: |
| 29 | + - dest: "SideBarEnhancements" |
| 30 | + repo: "https://github.com/titoBouzout/SideBarEnhancements" |
| 31 | + version: "st3" |
| 32 | + - dest: "GitGutter" |
| 33 | + repo: "https://github.com/jisaacks/GitGutter.git" |
| 34 | + version: "master" |
| 35 | + - dest: "BracketHighlighter" |
| 36 | + repo: "https://github.com/facelessuser/BracketHighlighter.git" |
| 37 | + version: "master" |
| 38 | + - dest: "Theme - Soda" |
| 39 | + repo: "https://github.com/buymeasoda/soda-theme.git" |
| 40 | + version: "master" |
| 41 | + - dest: "Base16" |
| 42 | + repo: "https://github.com/chriskempson/base16-textmate.git" |
| 43 | + version: "master" |
| 44 | + - dest: "ApplySyntax" |
| 45 | + repo: "https://github.com/facelessuser/ApplySyntax.git" |
| 46 | + version: "master" |
| 47 | + - dest: "SublimeAllAutocomplete" |
| 48 | + repo: "https://github.com/alienhard/SublimeAllAutocomplete" |
| 49 | + version: "master" |
| 50 | + - dest: "Ansible" |
| 51 | + repo: "https://github.com/clifford-github/sublime-ansible.git" |
| 52 | + version: "master" |
| 53 | + - sublime_text_color_scheme: "Packages/Base16/base16-eighties.dark.tmTheme" |
| 54 | + - sublime_text_theme: "Soda Dark 3.sublime-theme" |
| 55 | +``` |
23 | 56 |
|
24 | | -Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: |
| 57 | +## Dependencies |
25 | 58 |
|
26 | | - - hosts: servers |
27 | | - roles: |
28 | | - - { role: username.rolename, x: 42 } |
| 59 | +* [roderik.superlumic-homebrew](https://github.com/superlumic/ansible-role-homebrew) |
29 | 60 |
|
30 | | -License |
31 | | -------- |
| 61 | +# Usage |
32 | 62 |
|
33 | | -BSD |
| 63 | +Check [Superlumic](https://github.com/superlumic/superlumic) for documentation |
34 | 64 |
|
35 | | -Author Information |
36 | | ------------------- |
| 65 | +# License |
37 | 66 |
|
38 | | -An optional section for the role authors to include contact information, or a website (HTML is not allowed). |
| 67 | +MIT |
| 68 | +
|
| 69 | +# Author |
| 70 | +
|
| 71 | +[Roderik van der Veer](mailto:roderik@superlumic.com) - [@r0derik](https://twitter.com/r0derik) |
0 commit comments